tldr/pages/common/git-add.md

37 lines
609 B
Markdown
Raw Normal View History

2015-10-22 08:31:52 +01:00
# git add
2014-03-09 12:20:13 +00:00
> Adds changed files to the index.
> More information: <https://git-scm.com/docs/git-add>.
2014-03-09 12:20:13 +00:00
- Add a file to the index:
2014-03-09 12:20:13 +00:00
2016-01-26 18:18:51 +00:00
`git add {{path/to/file}}`
2014-03-09 12:20:13 +00:00
- Add all files (tracked and untracked):
2014-03-09 12:20:13 +00:00
`git add {{-A|--all}}`
2014-03-09 12:20:13 +00:00
- Add all files in the current folder:
`git add .`
- Only add already tracked files:
2015-12-27 20:46:25 +00:00
`git add {{-u|--update}}`
2015-12-27 20:46:25 +00:00
- Also add ignored files:
2014-03-09 12:20:13 +00:00
`git add {{-f|--force}}`
2016-01-26 18:18:51 +00:00
- Interactively stage parts of files:
`git add {{-p|--patch}}`
- Interactively stage parts of a given file:
2016-01-26 18:18:51 +00:00
`git add {{-p|--patch}} {{path/to/file}}`
- Interactively stage a file:
`git add {{-i|--interactive}}`