git2r (version 0.10.1)

show,git_stash-method: Brief summary of a stash

Description

Brief summary of a stash

Usage

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

Arguments

object
The stash object

Value

  • None (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, "Stash message")

# View brief summary of stash
stash_list(repo)[[1]]

Run the code above in your browser using DataCamp Workspace