From: Simon Ruderich Date: Sat, 1 Sep 2012 20:56:33 +0000 (+0200) Subject: gitconfig: Don't use long option names for git branch. X-Git-Url: https://ruderich.org/simon/gitweb/?p=config%2Fdotfiles.git;a=commitdiff_plain;h=46953503debf7cdcd6a471cd12c97dcfd49191a8 gitconfig: Don't use long option names for git branch. git branch only supports short options in (more or less) recent git versions. --- diff --git a/gitconfig.m4 b/gitconfig.m4 index a48ee48..0aaf9c0 100644 --- a/gitconfig.m4 +++ b/gitconfig.m4 @@ -71,8 +71,8 @@ include(../lib.m4) au = add --update # Branches. co = checkout - b = branch --all --verbose - br = branch --all --verbose + b = branch -a -v + br = branch -a -v m = merge me = merge # Remote.