Merge pull request #726 from sethwoodworth/feature-gap

Adds git-add -p instructions
waldyrious/alt-syntax
Ruben Vereecken 2016-01-28 17:17:04 +02:00
commit 6b351873f1
1 changed files with 5 additions and 1 deletions

View File

@ -4,7 +4,7 @@
- Add a file to the index:
`git add {{PATHSPEC}}`
`git add {{path/to/file}}`
- Add all files (tracked and untracked):
@ -17,3 +17,7 @@
- Also add ignored files:
`git add -f`
- Add parts of a file interactively:
`git add -p {{path/to/file}}`