Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2007-09-13 00:07:06 +0400
committerJunio C Hamano <gitster@pobox.com>2007-09-13 00:07:06 +0400
commit3d80017d0c948cca251a7aaa9fdc84a0664e95fe (patch)
tree4a2500866dbd17e0f3824d3553fd65af409563d5
parent6143fa2c9cc74023bab3279764cd6158b1227359 (diff)
parenta4503a15af661ee865ed10102df15a6d3b43e60a (diff)
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.c2
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;