split git commands

This commit is contained in:
kxy
2014-03-09 13:20:13 +01:00
parent b609908fe0
commit 4d70294f06
12 changed files with 141 additions and 59 deletions

16
pages/common/git-add.md Normal file
View File

@@ -0,0 +1,16 @@
#git add
> Adds changed files to the index
- Add a file to the index
`git add {{PATHSPEC}}`
- Add all current changes to the index
`git add .`
- Also add ignored files
`git add -f`