summaryrefslogtreecommitdiffhomepage
path: root/de-de/git-de.html.markdown
diff options
context:
space:
mode:
authorMarko Cubela <m.cubela97@htl-ottakring.ac.at>2017-10-14 11:43:53 +0200
committerMarko Cubela <m.cubela97@htl-ottakring.ac.at>2017-10-14 11:43:53 +0200
commit340a7b6d7812ef5ba1903983a7cd3f5cc3385288 (patch)
tree6fd7b3a3672db3fd333fd18d3e90f17e3dc27c7e /de-de/git-de.html.markdown
parent4ffa934f614841b32a1cb81842776e7f420d1d82 (diff)
add more commit examples
Diffstat (limited to 'de-de/git-de.html.markdown')
-rw-r--r--de-de/git-de.html.markdown6
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