OSDN Git Service

git-branch: default to --track
authorJohannes Schindelin <Johannes.Schindelin@gmx.de>
Fri, 6 Jul 2007 21:54:09 +0000 (22:54 +0100)
committerJunio C Hamano <gitster@pobox.com>
Sat, 7 Jul 2007 06:21:39 +0000 (23:21 -0700)
"git branch --track" will setup config variables when branching from
a remote branch, so that if you say "git pull" while being on that
branch, it automatically fetches the correct remote, and merges the
correct branch.

Often people complain that this is not the default for "git branch".
Make it so.

Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin-branch.c

index 77b85dd..84a8ad7 100644 (file)
@@ -22,7 +22,7 @@ static const char builtin_branch_usage[] =
 static const char *head;
 static unsigned char head_sha1[20];
 
-static int branch_track_remotes;
+static int branch_track_remotes = 1;
 
 static int branch_use_color;
 static char branch_colors[][COLOR_MAXLEN] = {