diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2010-02-14 22:44:42 +0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-02-14 13:21:39 -0800 |
commit | d06f15d9c0c2b072e5eebf87fa93ee9a899ed642 (patch) | |
tree | a8372029772fece69bbd793389e2a886628dfd92 /builtin-init-db.c | |
parent | ed0cb46ebb020234da94a843ca341dde8e9e3911 (diff) | |
download | git-d06f15d9c0c2b072e5eebf87fa93ee9a899ed642.tar.gz |
init-db, rev-parse --git-dir: do not append redundant slash
If git_dir already has the trailing slash, don't put another one
before .git. This only happens when git_dir is '/' or 'C:/'
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin-init-db.c')
-rw-r--r-- | builtin-init-db.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/builtin-init-db.c b/builtin-init-db.c index dd84caecbc..aae7a4d7ee 100644 --- a/builtin-init-db.c +++ b/builtin-init-db.c @@ -331,11 +331,14 @@ int init_db(const char *template_dir, unsigned int flags) git_config_set("receive.denyNonFastforwards", "true"); } - if (!(flags & INIT_DB_QUIET)) - printf("%s%s Git repository in %s/\n", + if (!(flags & INIT_DB_QUIET)) { + const char *git_dir = get_git_dir(); + int len = strlen(git_dir); + printf("%s%s Git repository in %s%s\n", reinit ? "Reinitialized existing" : "Initialized empty", shared_repository ? " shared" : "", - get_git_dir()); + git_dir, len && git_dir[len-1] != '/' ? "/" : ""); + } return 0; } |