Merge pull request #391 from markusthoemmes/patch-1

Adding git add -u
waldyrious/alt-syntax
Waldir Pimenta 2015-12-27 21:21:12 +00:00
commit 53bd229c88
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`