System Grab Bag

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

git add

Adds changed files to the index. More information: https://git-scm.com/docs/git-add.
  • Add a file to the index:
    git add {{path/to/file}}
  • Add all files (tracked and untracked):
    git add -A
  • Only add already tracked files:
    git add -u
  • Also add ignored files:
    git add -f
  • Interactively stage parts of files:
    git add -p
  • Interactively stage parts of a given file:
    git add -p {{path/to/file}}
  • Interactively stage a file:
    git add -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.