object, or the stash object to drop. Default is a path = '.' to a reposiory.
index: The index to the stash to drop. Only used when object is a path to a repository or a git_repository object. Default is index = 1.
Returns
invisible NULL
Examples
## Not run:## Initialize a temporary repositorypath <- tempfile(pattern="git2r-")dir.create(path)repo <- init(path)# Configure a userconfig(repo, user.name ="Alice", user.email ="alice@example.org")# Create a file, add and commitwriteLines("Hello world!", file.path(path,"test.txt"))add(repo,'test.txt')commit(repo,"Commit message")# Change filewriteLines(c("Hello world!","HELLO WORLD!"), file.path(path,"test.txt"))# Create stash in repositorystash(repo)# Change filewriteLines(c("Hello world!","HeLlO wOrLd!"), file.path(path,"test.txt"))# Create stash in repositorystash(repo)# View stashesstash_list(repo)# Drop git_stash object in repositorystash_drop(stash_list(repo)[[1]])## Drop stash using an index to stashstash_drop(repo,1)# View stashesstash_list(repo)## End(Not run)