diff options
author | Daniel Barkalow <barkalow@iabervon.org> | 2007-09-10 23:02:51 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-09-19 03:22:30 -0700 |
commit | 0012ba2108aa42947dedf19f3db2de73a67cc4f5 (patch) | |
tree | 1fab21bbd724c80da0e7da3ca624e287a0e916ea /remote.c | |
parent | 30ae764b1e11f10b5fca723a876a0f3de3ca11ab (diff) | |
download | git-0012ba2108aa42947dedf19f3db2de73a67cc4f5.tar.gz |
Add uploadpack configuration info to remote.
Signed-off-by: Daniel Barkalow <barkalow@iabervon.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'remote.c')
-rw-r--r-- | remote.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -196,6 +196,11 @@ static int handle_config(const char *key, const char *value) remote->receivepack = xstrdup(value); else error("more than one receivepack given, using the first"); + } else if (!strcmp(subkey, ".uploadpack")) { + if (!remote->uploadpack) + remote->uploadpack = xstrdup(value); + else + error("more than one uploadpack given, using the first"); } return 0; } |