System Grab Bag

View all TLDR pages from common (or from all pages)

git stage

Add file contents to the staging area. Synonym of git add. More information: https://git-scm.com/docs/git-stage.
  • Add a file to the index:
    git stage {{path/to/file}}
  • Add all files (tracked and untracked):
    git stage -A
  • Only add already tracked files:
    git stage -u
  • Also add ignored files:
    git stage -f
  • Interactively stage parts of files:
    git stage -p
  • Interactively stage parts of a given file:
    git stage -p {{path/to/file}}
  • Interactively stage a file:
    git stage -i

License and Disclaimer

The content on this page is copyright © 2014—present the tldr-pages team and contributors.
This page is used with permission under Creative Commons Attribution 4.0 International License.

While we do attempt to make sure content is accurate, there isn't a warranty of any kind.