summaryrefslogtreecommitdiff
path: root/.gitconfig
diff options
context:
space:
mode:
authorYuval Adam <yuv.adm@gmail.com>2012-03-30 11:40:07 +0300
committerYuval Adam <yuv.adm@gmail.com>2012-03-30 11:40:07 +0300
commitaa429ff556d039f92f907fcaca4bbb2630b4b70f (patch)
tree213c7f499157984f45dc06c873ef86448d5cd904 /.gitconfig
parentcaa0ef96b6e931c407d9a25ec62ddaab5f62df7a (diff)
aliases: ca, d, dc
Diffstat (limited to '.gitconfig')
-rw-r--r--.gitconfig8
1 files changed, 5 insertions, 3 deletions
diff --git a/.gitconfig b/.gitconfig
index e412ba7..3101248 100644
--- a/.gitconfig
+++ b/.gitconfig
@@ -36,12 +36,14 @@
cob = checkout -b
lg = ! git --no-pager log --oneline --graph -n 18 --decorate
pure = pull --rebase
- diffc = diff --cached
+ d = diff
+ dc = diff --cached
cfd = clean -fd
assun = update-index --assume-unchanged
noassun = update-index --no-assume-unchanged
rh = reset HEAD
- cmend = commit --amend -C HEAD
- camend = commit --amend -a -C HEAD
+ cmend = commit --amend -C HEAD
+ camend = commit --amend -a -C HEAD
+ ca = commit -a