diff options
author | Junio C Hamano <gitster@pobox.com> | 2010-05-10 18:34:03 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-05-10 18:34:03 -0700 |
commit | d92f84461033b6ca3e19e31d30e5524bd25346ee (patch) | |
tree | 02168f21f10b22b5625a11ca1ec09aee9addc87a /builtin | |
parent | git-svn: mangle refnames forbidden in git (diff) | |
parent | handle "git --bare init <dir>" properly (diff) | |
download | tgif-d92f84461033b6ca3e19e31d30e5524bd25346ee.tar.xz |
Merge branch 'maint'
* maint:
handle "git --bare init <dir>" properly
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/init-db.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/init-db.c b/builtin/init-db.c index edc40ff574..0271285fad 100644 --- a/builtin/init-db.c +++ b/builtin/init-db.c @@ -463,7 +463,7 @@ int cmd_init_db(int argc, const char **argv, const char *prefix) static char git_dir[PATH_MAX+1]; setenv(GIT_DIR_ENVIRONMENT, - getcwd(git_dir, sizeof(git_dir)), 0); + getcwd(git_dir, sizeof(git_dir)), argc > 0); } if (init_shared_repository != -1) |