summary.git_stash: Summary of a stash

View source: R/stash.R

summary.git_stashR Documentation

Summary of a stash

Description

Summary of a stash

Usage

## S3 method for class 'git_stash'
summary(object, ...)

Arguments

object

The stash object

...

Additional arguments affecting the summary produced.

Value

None (invisible 'NULL').

Examples

## Not run: 
## 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 summary of stash
summary(stash_list(repo)[[1]])

## End(Not run)

git2r documentation built on Nov. 26, 2023, 5:06 p.m.