From 8fddce5df894e64532ed4a0b66b5a7e2adaf5fd1 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Sat, 11 Aug 2012 04:28:20 +0200 Subject: [PATCH] gitconfig: Use long options in aliases. --- gitconfig.m4 | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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 -- 2.44.1