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