diff options
author | Junio C Hamano <gitster@pobox.com> | 2007-09-12 13:07:06 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-09-12 13:07:06 -0700 |
commit | 3d80017d0c948cca251a7aaa9fdc84a0664e95fe (patch) | |
tree | 4a2500866dbd17e0f3824d3553fd65af409563d5 | |
parent | stash: end index commit log with a newline (diff) | |
parent | Make --no-thin the default in git-push to save server resources (diff) | |
download | tgif-3d80017d0c948cca251a7aaa9fdc84a0664e95fe.tar.xz |
Merge branch 'sp/maint-no-thin' into maint
* sp/maint-no-thin:
Make --no-thin the default in git-push to save server resources
-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; |