Merge branch 'sp/maint-no-thin' into maint

* sp/maint-no-thin:
  Make --no-thin the default in git-push to save server resources
maint
Junio C Hamano 2007-09-12 13:07:06 -07:00
commit 3d80017d0c
1 changed files with 1 additions and 1 deletions

View File

@ -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;