]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
gitconfig: Use long options in aliases.
authorSimon Ruderich <simon@ruderich.org>
Sat, 11 Aug 2012 02:28:20 +0000 (04:28 +0200)
committerSimon Ruderich <simon@ruderich.org>
Sat, 11 Aug 2012 02:36:04 +0000 (04:36 +0200)
gitconfig.m4

index 171f256626745f352cdcdc6c732b2e76f4d0e95c..9748a00482db9d1831527aa625854b6384898178 100644 (file)
@@ -38,8 +38,8 @@ include(../lib.m4)
 
 [alias]
        # Shortcuts for often used commands.
-       c  = commit -v
-       ci = commit -v
+       c  = commit --verbose
+       ci = commit --verbose
        d  = diff --patience
        di = diff --patience
        dc = diff --patience --cached
@@ -47,14 +47,14 @@ include(../lib.m4)
        st = status
        l  = log
        ls = log --stat
-       lp = log -p --patience
+       lp = log --patch --patience
        glog = log --pretty=oneline --graph --all
        a  = add
-       ap = add -p
-       au = add -u
+       ap = add --patch
+       au = add --update
        co = checkout
-       b  = branch -av
-       br = branch -av
+       b  = branch --all --verbose
+       br = branch --all --verbose
        m  = merge
        me = merge
        f  = fetch