Forrest logo
back to context overview

git-stage

List of commands for git-stage:

  • git-stage:tldr:442c6 git-stage: Add a file to the index.
    $ git stage ${filename}
    try on your machine
    explain this command
  • git-stage:tldr:49313 git-stage: Interactively stage parts of files.
    $ git stage -p
    try on your machine
    explain this command
  • git-stage:tldr:a50d0 git-stage: Also add ignored files.
    $ git stage -f
    try on your machine
    explain this command
  • git-stage:tldr:af769 git-stage: Interactively stage a file.
    $ git stage -i
    try on your machine
    explain this command
  • git-stage:tldr:e411b git-stage: Only add already tracked files.
    $ git stage -u
    try on your machine
    explain this command
  • git-stage:tldr:f2130 git-stage: Add all files (tracked and untracked).
    $ git stage -A
    try on your machine
    explain this command
  • git-stage:tldr:fa823 git-stage: Interactively stage parts of a given file.
    $ git stage -p ${filename}
    try on your machine
    explain this command
back to context overview