mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-09-10 13:33:43 +02:00
git-commit: add German translation
This commit is contained in:
parent
d4fad2a2e3
commit
8bc28019c9
1 changed files with 20 additions and 0 deletions
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}}`
|
Loading…
Add table
Reference in a new issue