diff options
author | Junio C Hamano <gitster@pobox.com> | 2007-09-10 00:00:39 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-09-10 00:00:39 -0700 |
commit | 9784c5c53e0765bc9a0c973ab10aaf0734d535c3 (patch) | |
tree | 19ddbb0ddd0c4d34bb113672bd61906998fa3f7c /builtin-push.c | |
parent | Merge branch 'maint' (diff) | |
parent | Make --no-thin the default in git-push to save server resources (diff) | |
download | tgif-9784c5c53e0765bc9a0c973ab10aaf0734d535c3.tar.xz |
Merge branch 'sp/maint-no-thin'
* sp/maint-no-thin:
Make --no-thin the default in git-push to save server resources
fix doc for --compression argument to pack-objects
git-tag -s must fail if gpg cannot sign the tag.
Diffstat (limited to 'builtin-push.c')
-rw-r--r-- | builtin-push.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin-push.c b/builtin-push.c index 2612f07f74..88c5024da7 100644 --- a/builtin-push.c +++ b/builtin-push.c @@ -9,7 +9,7 @@ static const char push_usage[] = "git-push [--all] [--tags] [--receive-pack=<git-receive-pack>] [--repo=all] [-f | --force] [-v] [<repository> <refspec>...]"; -static int all, force, thin = 1, verbose; +static int all, force, thin, verbose; static const char *receivepack; static const char **refspec; |