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 | |
parent | Modularize commit-walker (diff) | |
download | tgif-0012ba2108aa42947dedf19f3db2de73a67cc4f5.tar.xz |
Add uploadpack configuration info to remote.
Signed-off-by: Daniel Barkalow <barkalow@iabervon.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | remote.c | 5 | ||||
-rw-r--r-- | remote.h | 1 |
2 files changed, 6 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; } @@ -16,6 +16,7 @@ struct remote { int fetch_refspec_nr; const char *receivepack; + const char *uploadpack; }; struct remote *remote_get(const char *name); |