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-04-24 12:09:56 +01:00
|
|
|
> Weitere Informationen: <https://git-scm.com/docs/git-add>.
|
2020-10-04 00:06:14 +01:00
|
|
|
|
2021-05-01 19:20:15 +01:00
|
|
|
- Füge eine bestimmte Datei zum Index 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-05-01 19:20:15 +01:00
|
|
|
- Füge alle Dateien zum Index hinzu (nachverfolgte und nicht nachverfolgte):
|
2020-10-04 00:06:14 +01:00
|
|
|
|
|
|
|
`git add -A`
|
|
|
|
|
2021-05-01 19:20:15 +01:00
|
|
|
- Füge nur nachverfolgte Dateien zum Index hinzu (Updaten des Index):
|
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-05-01 19:20:15 +01:00
|
|
|
- Füge Teile von Dateien zum Index 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-05-01 19:20:15 +01:00
|
|
|
- Füge Dateien zum Index interaktiv hinzu:
|
2020-10-04 00:06:14 +01:00
|
|
|
|
|
|
|
`git add -i`
|