aboutsummaryrefslogtreecommitdiff
path: root/remote.c
diff options
context:
space:
mode:
authorJohannes Schindelin <Johannes.Schindelin@gmx.de>2008-02-29 01:45:45 +0000
committerJunio C Hamano <gitster@pobox.com>2008-03-01 01:51:44 -0800
commit211c89682eeef310f39022b91e88d07cd5784953 (patch)
tree937dd57e950e3c30e218d3edb4c8054299511be0 /remote.c
parent4704640b611dfb275f6a74c9a9be5e309260a71c (diff)
downloadgit-211c89682eeef310f39022b91e88d07cd5784953.tar.gz
git-211c89682eeef310f39022b91e88d07cd5784953.tar.xz
Make git-remote a builtin
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'remote.c')
-rw-r--r--remote.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/remote.c b/remote.c
index 7e1937286..f3f7375ee 100644
--- a/remote.c
+++ b/remote.c
@@ -357,7 +357,8 @@ static int handle_config(const char *key, const char *value)
remote->fetch_tags = -1;
} else if (!strcmp(subkey, ".proxy")) {
remote->http_proxy = xstrdup(value);
- }
+ } else if (!strcmp(subkey, ".skipdefaultupdate"))
+ remote->skip_default_update = 1;
return 0;
}