Drop stash
Arguments
- object
path to a repository, or a
git_repository
object, or the stashobject
to drop. Default is apath = '.'
to a reposiory.- index
The index to the stash to drop. Only used when
object
is a path to a repository or agit_repository
object. Default isindex = 1
.
Examples
if (FALSE) {
## Initialize a temporary repository
path <- tempfile(pattern="git2r-")
dir.create(path)
repo <- init(path)
# Configure a user
config(repo, user.name = "Alice", user.email = "[email protected]")
# Create a file, add and commit
writeLines("Hello world!", file.path(path, "test.txt"))
add(repo, 'test.txt')
commit(repo, "Commit message")
# Change file
writeLines(c("Hello world!", "HELLO WORLD!"), file.path(path, "test.txt"))
# Create stash in repository
stash(repo)
# Change file
writeLines(c("Hello world!", "HeLlO wOrLd!"), file.path(path, "test.txt"))
# Create stash in repository
stash(repo)
# View stashes
stash_list(repo)
# Drop git_stash object in repository
stash_drop(stash_list(repo)[[1]])
## Drop stash using an index to stash
stash_drop(repo, 1)
# View stashes
stash_list(repo)
}