2020-10-04 00:06:14 +01:00
|
|
|
# git add
|
|
|
|
|
2021-03-25 16:42:04 +00:00
|
|
|
> Füge Dateien zum Index/Stage hinzu.
|
2021-01-16 15:33:31 +00:00
|
|
|
> Mehr Informationen: <https://git-scm.com/docs/git-add>.
|
2020-10-04 00:06:14 +01:00
|
|
|
|
2021-03-25 16:42:04 +00:00
|
|
|
- Füge eine bestimmte Datei zum Index/Stage hinzu:
|
2020-10-04 00:06:14 +01:00
|
|
|
|
2021-03-25 16:42:04 +00:00
|
|
|
`git add {{pfad/zu/datei}}`
|
2020-10-04 00:06:14 +01:00
|
|
|
|
2021-03-25 16:42:04 +00:00
|
|
|
- Füge alle Dateien zum Index/Stage hinzu (nachverfolgte und nicht nachverfolgte):
|
2020-10-04 00:06:14 +01:00
|
|
|
|
|
|
|
`git add -A`
|
|
|
|
|
2021-03-25 16:42:04 +00:00
|
|
|
- Füge nur nachverfolgte Dateien zum Index/Stage hinzu (Updaten des Index/Stage):
|
2020-10-04 00:06:14 +01:00
|
|
|
|
|
|
|
`git add -u`
|
|
|
|
|
2021-03-25 16:42:04 +00:00
|
|
|
- Füge auch Dateien, welche ignoriert werden (`.gitignore`) hinzu:
|
2020-10-04 00:06:14 +01:00
|
|
|
|
|
|
|
`git add -f`
|
|
|
|
|
2021-03-25 16:42:04 +00:00
|
|
|
- Füge Teile von Dateien zum Index/Stage interaktiv hinzu:
|
2020-10-04 00:06:14 +01:00
|
|
|
|
|
|
|
`git add -p`
|
|
|
|
|
2021-03-25 16:42:04 +00:00
|
|
|
- Füge Teile einer bestimmten Datei interaktiv hinzu:
|
2020-10-04 00:06:14 +01:00
|
|
|
|
2021-03-25 16:42:04 +00:00
|
|
|
`git add -p {{pfad/zu/datei}}`
|
2020-10-04 00:06:14 +01:00
|
|
|
|
2021-03-25 16:42:04 +00:00
|
|
|
- Füge Dateien zum Index/Stage interaktiv hinzu:
|
2020-10-04 00:06:14 +01:00
|
|
|
|
|
|
|
`git add -i`
|