git-commit: add German translation
This commit is contained in:

committed by
Starbeamrainbowlabs

parent
d4fad2a2e3
commit
8bc28019c9
20
pages.de/common/git-commit.md
Normal file
20
pages.de/common/git-commit.md
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
# git commit
|
||||||
|
|
||||||
|
> Commit Dateien in das Repository.
|
||||||
|
> Mehr Informationen: <https://git-scm.com/docs/git-commit>.
|
||||||
|
|
||||||
|
- Commiten von gestagten Dateien zum Repository mit einer Nachricht:
|
||||||
|
|
||||||
|
`git commit -m {{message}}`
|
||||||
|
|
||||||
|
- Automatisches Stagen aller modifizierten Datei und nachfolgendem Commiten mit einer Nachricht:
|
||||||
|
|
||||||
|
`git commit -a -m {{message}}`
|
||||||
|
|
||||||
|
- Ersetzt den letzten Commit mit den gerade auf dem Stage liegenden Änderungen:
|
||||||
|
|
||||||
|
`git commit --amend`
|
||||||
|
|
||||||
|
- Nur spezifische Dateien commiten (die Dateien müssen schon auf dem Stage liegen)
|
||||||
|
|
||||||
|
`git commit {{path/to/my/file1}} {{path/to/my/file2}}`
|
Reference in New Issue
Block a user