Adding git add -u

waldyrious/alt-syntax
Markus Thoemmes 2015-12-27 21:46:25 +01:00
parent eb44091065
commit 6dae21d335
1 changed files with 5 additions and 1 deletions

View File

@ -6,10 +6,14 @@
`git add {{PATHSPEC}}`
- Add all current changes to the index
- Add all files (tracked and untracked)
`git add .`
- Only add already tracked files
`git add -u`
- Also add ignored files
`git add -f`