Skip to contents

Shows the working tree status, indicating which files have been modified, added, deleted, or untracked.

Usage

git_status(short = TRUE)

Arguments

short

Logical. Whether to show status in short format. Default is TRUE.

Value

Character vector containing status output

Examples

if (FALSE) { # \dontrun{
git_status()
git_status(short = FALSE)  # detailed output
} # }