Signed-off-by: Daniel Barkalow <barkalow@xxxxxxxxxxxx> --- remote.c | 5 +++++ remote.h | 1 + 2 files changed, 6 insertions(+), 0 deletions(-) diff --git a/remote.c b/remote.c index bb774d0..a8196b1 100644 --- a/remote.c +++ b/remote.c @@ -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; } diff --git a/remote.h b/remote.h index 17b8b5b..72c9153 100644 --- a/remote.h +++ b/remote.h @@ -16,6 +16,7 @@ struct remote { int fetch_refspec_nr; const char *receivepack; + const char *uploadpack; }; struct remote *remote_get(const char *name); -- 1.5.3.rc3.864.g8f4b4 - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html