*: clean up and normalize (#5437)

This commit is contained in:
marchersimon
2021-03-25 17:42:04 +01:00
committed by GitHub
parent 0f37d0336b
commit de311e1749
115 changed files with 874 additions and 877 deletions

View File

@@ -1,32 +1,32 @@
# git add
> Fügt Dateien zum Index/Stage hinzu.
> Füge Dateien zum Index/Stage hinzu.
> Mehr Informationen: <https://git-scm.com/docs/git-add>.
- Fügt eine Datei zum Index/Stage hinzu:
- Füge eine bestimmte Datei zum Index/Stage hinzu:
`git add {{pfad/zur/datei}}`
`git add {{pfad/zu/datei}}`
- Fügt alle Dateien zum Index/Stage hinzu (nachverfolgte und nicht nachverfolgte):
- Füge alle Dateien zum Index/Stage hinzu (nachverfolgte und nicht nachverfolgte):
`git add -A`
- Fügt nur nachverfolgte Dateien zum Index/Stage hinzu (Updaten des Index/Stage):
- Füge nur nachverfolgte Dateien zum Index/Stage hinzu (Updaten des Index/Stage):
`git add -u`
- Fügt auch Dateien, welche ignoriert werden (`.gitignore`) hinzu:
- Füge auch Dateien, welche ignoriert werden (`.gitignore`) hinzu:
`git add -f`
- Interaktives Hinzufügen von Dateien zum Index/Stage:
- Füge Teile von Dateien zum Index/Stage interaktiv hinzu:
`git add -p`
- Interaktives Hinzufügen von Teilen der Datei, welche angegeben wird:
- Füge Teile einer bestimmten Datei interaktiv hinzu:
`git add -p {{pfad/zur/datei}}`
`git add -p {{pfad/zu/datei}}`
- Interaktives Hinzufügen von Dateien zum Index/Stage:
- Füge Dateien zum Index/Stage interaktiv hinzu:
`git add -i`