1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-24 07:35:24 +02:00

Adds git-add -p instructions

This commit is contained in:
Seth Woodworth 2016-01-26 13:18:51 -05:00
parent b4304e1050
commit 6692518213

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}}`