if (FALSE) {
## Initialize a repository
path <- tempfile(pattern="git2r-")
dir.create(path)
repo <- init(path)
## Create a user
config(repo, user.name = "Alice", user.email = "alice@example.org")
## Create a file
writeLines("Hello world!", file.path(path, "file-to-remove.txt"))
## Add file to repository
add(repo, "file-to-remove.txt")
## View status of repository
status(repo)
## Remove file
index_remove_bypath(repo, "file-to-remove.txt")
## View status of repository
status(repo)
}
Run the code above in your browser using DataLab