summaryrefslogtreecommitdiff
path: root/builtin-clone.c
diff options
context:
space:
mode:
authorJohannes Schindelin <Johannes.Schindelin@gmx.de>2008-08-01 14:01:36 (GMT)
committerJunio C Hamano <gitster@pobox.com>2008-08-03 21:05:55 (GMT)
commit6612f877cc94e80cd0c7393a8ea6bfea69146b3c (patch)
tree936a286e2ffaf1c2a608f2f63d5adf657aeb74c3 /builtin-clone.c
parent807d86945336f676c9f650a6cbae9baa3191aaec (diff)
downloadgit-6612f877cc94e80cd0c7393a8ea6bfea69146b3c.zip
git-6612f877cc94e80cd0c7393a8ea6bfea69146b3c.tar.gz
git-6612f877cc94e80cd0c7393a8ea6bfea69146b3c.tar.bz2
clone --bare: Add ".git" suffix to the directory name to clone into
We have a tradition that bare repositories live in directories ending in ".git". To make this more a convention than just a tradition, teach "git clone --bare" to add a ".git" suffix to the directory name. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin-clone.c')
-rw-r--r--builtin-clone.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/builtin-clone.c b/builtin-clone.c
index ecdcefa..8612d59 100644
--- a/builtin-clone.c
+++ b/builtin-clone.c
@@ -95,7 +95,7 @@ static char *get_repo_path(const char *repo, int *is_bundle)
return NULL;
}
-static char *guess_dir_name(const char *repo, int is_bundle)
+static char *guess_dir_name(const char *repo, int is_bundle, int is_bare)
{
const char *end = repo + strlen(repo), *start;
@@ -131,6 +131,12 @@ static char *guess_dir_name(const char *repo, int is_bundle)
end -= 4;
}
+ if (is_bare) {
+ char *result = xmalloc(end - start + 5);
+ sprintf(result, "%.*s.git", (int)(end - start), start);
+ return result;
+ }
+
return xstrndup(start, end - start);
}
@@ -389,7 +395,7 @@ int cmd_clone(int argc, const char **argv, const char *prefix)
if (argc == 2)
dir = xstrdup(argv[1]);
else
- dir = guess_dir_name(repo_name, is_bundle);
+ dir = guess_dir_name(repo_name, is_bundle, option_bare);
if (!stat(dir, &buf))
die("destination directory '%s' already exists.", dir);