From: Simon Ruderich Date: Sat, 11 Aug 2012 02:28:20 +0000 (+0200) Subject: gitconfig: Use long options in aliases. X-Git-Url: https://ruderich.org/simon/gitweb/?p=config%2Fdotfiles.git;a=commitdiff_plain;h=8fddce5df894e64532ed4a0b66b5a7e2adaf5fd1 gitconfig: Use long options in aliases. --- diff --git a/gitconfig.m4 b/gitconfig.m4 index 171f256..9748a00 100644 --- a/gitconfig.m4 +++ b/gitconfig.m4 @@ -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