This website requires JavaScript.
Explore
Help
Sign In
ctome
/
tldr
mirror of
https://github.com/CrimsonTome/tldr.git
Watch
1
Star
0
Fork
You've already forked tldr
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
17b990f4e4
tldr
/
pages
/
common
/
git-add.md
243 B
Raw
Blame
History
git add
Adds changed files to the index.
Add a file to the index:
git add {{PATHSPEC}}
Add all files (tracked and untracked):
git add .
Only add already tracked files:
git add -u
Also add ignored files:
git add -f