From 46953503debf7cdcd6a471cd12c97dcfd49191a8 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Sat, 1 Sep 2012 22:56:33 +0200 Subject: [PATCH] gitconfig: Don't use long option names for git branch. git branch only supports short options in (more or less) recent git versions. --- gitconfig.m4 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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. -- 2.44.1