if (FALSE) {
## Initialize a temporary repository
path <- tempfile(pattern="git2r-")
dir.create(path)
repo <- init(path)
## Create a user
config(repo, user.name = "Alice", user.email = "alice@example.org")
## Check if path is in a git repository
in_repository(path)
## Check if working directory is in a git repository
setwd(path)
in_repository()
}
Run the code above in your browser using DataLab