diff options
author | Andre Polykanine A.K.A. Menelion Elensúlë <andre@oire.org> | 2017-10-14 14:33:42 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-14 14:33:42 +0300 |
commit | ec62935d72a618a11ea1cd5e194b515b95d34fbe (patch) | |
tree | 6fd7b3a3672db3fd333fd18d3e90f17e3dc27c7e | |
parent | 4ffa934f614841b32a1cb81842776e7f420d1d82 (diff) | |
parent | 340a7b6d7812ef5ba1903983a7cd3f5cc3385288 (diff) |
Merge pull request #2908 from Xeleron/master
[git/de] add more commit examples
-rw-r--r-- | de-de/git-de.html.markdown | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/de-de/git-de.html.markdown b/de-de/git-de.html.markdown index 61f7bb67..a0ed120f 100644 --- a/de-de/git-de.html.markdown +++ b/de-de/git-de.html.markdown @@ -205,6 +205,12 @@ Speichert die aktuellen Inhalte des Index in einen neuen *Commit*. Dieser Commit ```bash # Commit mit Beschreibung erstellen. $ git commit -m "Added multiplyNumbers() function to HelloWorld.c" + +# Alle veränderten oder gelöschten Dateien außer neue Dateien werden gestaged und dann wird ein Commit erstellt. +$ git commit -a -m "Modified foo.php and removed bar.php" + +# Ändert den letzten Commit (der letzte Commit wird mit einem neuen Commit ersetzt) +$ git commit --amend -m "Correct message" ``` ### diff |