git2r (version 0.10.1)

branches: Branches

Description

List branches in repository

Usage

branches(repo, flags = c("all", "local", "remote"))

## S3 method for class 'git_repository': branches(repo, flags = c("all", "local", "remote"))

Arguments

repo
The repository object
flags
Filtering flags for the branch listing. Valid values are 'all', 'local' or 'remote'

Value

  • list of branches in repository

Examples

Run this code
## Initialize repositories
path_bare <- tempfile(pattern="git2r-")
path_repo <- tempfile(pattern="git2r-")
dir.create(path_bare)
dir.create(path_repo)
repo_bare <- init(path_bare, bare = TRUE)
repo <- clone(path_bare, path_repo)

## Config first user and commit a file
config(repo, user.name="Alice", user.email="alice@example.org")

## Write to a file and commit
writeLines("Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do",
           file.path(path_repo, "example.txt"))
add(repo, "example.txt")
commit(repo, "First commit message")

## Push commits from repository to bare repository
## Adds an upstream tracking branch to branch 'master'
push(repo, "origin", "refs/heads/master")

## List branches
branches(repo)

Run the code above in your browser using DataLab