tldr/pages.de/common/git-add.md

33 lines
665 B
Markdown
Raw Normal View History

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.
> Weitere Informationen: <https://git-scm.com/docs/git-add>.
2020-10-04 00:06:14 +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
- Füge alle Dateien zum Index hinzu (nachverfolgte und nicht nachverfolgte):
2020-10-04 00:06:14 +01:00
`git add -A`
- 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`
- 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
- Füge Dateien zum Index interaktiv hinzu:
2020-10-04 00:06:14 +01:00
`git add -i`