git2r (version 0.10.1)

stash_drop: Drop stash

Description

Drop stash

Usage

stash_drop(object, ...)

## S3 method for class 'git_repository': stash_drop(object, index)

## S3 method for class 'git_stash': stash_drop(object)

Arguments

object
The stash object to drop or a zero-based integer to the stash to drop. The last stash has index 0.
...
Additional arguments affecting the stash_drop
index
Zero based index to the stash to drop. Only used when object is a git_repository.

Value

  • invisible NULL

Examples

Run this code
## Initialize a temporary repository
path <- tempfile(pattern="git2r-")
dir.create(path)
repo <- init(path)

# Configure a user
config(repo, user.name="Alice", user.email="alice@example.org")

# 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, 0)

# View stashes
stash_list(repo)

Run the code above in your browser using DataLab