diff options
author | Junio C Hamano <gitster@pobox.com> | 2011-03-04 15:02:26 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-03-04 15:02:26 -0800 |
commit | 51aca1665b9fa8214927780fbccd1915649b3c44 (patch) | |
tree | 55489abb9e7ec87845a963eaf7e11e6eaac34edf /builtin | |
parent | Merge branch 'jc/grep--no-index-pathspec-fix' (diff) | |
parent | clone: die when trying to clone missing local path (diff) | |
download | tgif-51aca1665b9fa8214927780fbccd1915649b3c44.tar.xz |
Merge branch 'jk/fail-null-clone'
* jk/fail-null-clone:
clone: die when trying to clone missing local path
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/clone.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/clone.c b/builtin/clone.c index 60d9a64280..2ee1fa9846 100644 --- a/builtin/clone.c +++ b/builtin/clone.c @@ -413,7 +413,7 @@ int cmd_clone(int argc, const char **argv, const char *prefix) if (path) repo = xstrdup(make_nonrelative_path(repo_name)); else if (!strchr(repo_name, ':')) - repo = xstrdup(make_absolute_path(repo_name)); + die("repository '%s' does not exist", repo_name); else repo = repo_name; is_local = path && !is_bundle; |