summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOwen Jacobson <owen.jacobson@grimoire.ca>2013-11-25 12:13:02 -0800
committerOwen Jacobson <owen.jacobson@grimoire.ca>2013-11-25 12:13:02 -0800
commit1ec0ee8f1ef75decd14e7707ff178b1892771d53 (patch)
tree5431fb0c53bce6ebceca1a88bb4da3e569028ee5
parent9f71c98ff9baac31ded3f155c616fbf2d638cbf3 (diff)
parent60f3728b4ecaab7e598a0932c18dfef0d4a1e263 (diff)
Merge pull request #2 from ojacobson/amend-no-edit
Include `--no-edit` in `git amend`, for streamlining. (Thanks, canton7!)
-rw-r--r--aliases.gitconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/aliases.gitconfig b/aliases.gitconfig
index d1c3679..708629b 100644
--- a/aliases.gitconfig
+++ b/aliases.gitconfig
@@ -67,7 +67,7 @@
# make you so, so sad. `.git/info/exclude` is a great help for this.
this = add --all
# Replace the most recent commit: `git amend [commit options]`.
- amend = commit --amend
+ amend = commit --amend --no-edit
# Retrofit changes onto an old commit during the next rebase/rewrite:
# `git fixup COMMITISH` (for example, `git fixup HEAD`).
fixup = commit --fixup