diff options
author | Marko Cubela <m.cubela97@htl-ottakring.ac.at> | 2017-10-14 11:43:53 +0200 |
---|---|---|
committer | Marko Cubela <m.cubela97@htl-ottakring.ac.at> | 2017-10-14 11:43:53 +0200 |
commit | 340a7b6d7812ef5ba1903983a7cd3f5cc3385288 (patch) | |
tree | 6fd7b3a3672db3fd333fd18d3e90f17e3dc27c7e | |
parent | 4ffa934f614841b32a1cb81842776e7f420d1d82 (diff) |
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 |