mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-13 00:27:21 +03:00
git-add: add german translation
This commit is contained in:
parent
720939426a
commit
41d31bc7b9
32
pages.de/common/git-add.md
Normal file
32
pages.de/common/git-add.md
Normal file
@ -0,0 +1,32 @@
|
||||
# git add
|
||||
|
||||
> Fügt Dateien zum Index/Stage hinzu.
|
||||
> Mehr Informationen: <https://git-scm.com/docs/git-add>.
|
||||
|
||||
- Fügt eine Datei zum Index/Stage hinzu:
|
||||
|
||||
`git add {{pfad/zur/datei}}`
|
||||
|
||||
- Fügt 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):
|
||||
|
||||
`git add -u`
|
||||
|
||||
- Fügt auch Dateien, welche ignoriert werden (.gitignore) hinzu:
|
||||
|
||||
`git add -f`
|
||||
|
||||
- Interaktives Hinzufügen von Dateien zum Index/Stage:
|
||||
|
||||
`git add -p`
|
||||
|
||||
- Interaktives Hinzufügen von Teilen der Datei, welche angegeben wird:
|
||||
|
||||
`git add -p {{pfad/zur/datei}}`
|
||||
|
||||
- Interaktives Hinzufügen von Dateien zum Index/Stage:
|
||||
|
||||
`git add -i`
|
Loading…
Reference in New Issue
Block a user