Learn R Programming

git2r (version 0.21.0)

workdir: Workdir of repository

Description

Workdir of repository

Usage

workdir(repo)

# S4 method for missing workdir()

# S4 method for git_repository workdir(repo)

Arguments

repo

The repository object '>git_repository. If the repo argument is missing, the repository is searched for with discover_repository in the current working directory.

Value

Character vector with the path of the workdir. If the repository is bare, NULL will be returned.

Examples

Run this code
# NOT RUN {
## Create a directory in tempdir
path <- tempfile(pattern="git2r-")
dir.create(path)

## Initialize a repository
repo <- init(path)

## Get the path of the workdir for repository
workdir(repo)
# }

Run the code above in your browser using DataLab