if (FALSE) {
## Create a directory in tempdir
path <- tempfile(pattern="git2r-")
dir.create(path)
## Initialize a repository
repo <- init(path)
config(repo, user.name = "Alice", user.email = "alice@example.org")
## Create a file, add and commit
lines <- "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do"
writeLines(lines, con = file.path(path, "test.txt"))
add(repo, "test.txt")
commit(repo, "Commit message 1")
## Get the commit pointed to by the 'master' branch
lookup_commit(repository_head(repo))
## Create a tag
a_tag <- tag(repo, "Tagname", "Tag message")
## Get the commit pointed to by 'a_tag'
lookup_commit(a_tag)
}
Run the code above in your browser using DataLab