diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-10-15 16:15:00 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-10-15 16:15:00 -0700 |
commit | 9768648144e8597890d371d9581eb26da52a4922 (patch) | |
tree | f21f08ddcb4021eb248e6873b0f0aa2b4d91bd10 /builtin/clone.c | |
parent | git.txt: fix asciidoc syntax of --*-pathspecs (diff) | |
parent | git-prune-packed.txt: fix reference to GIT_OBJECT_DIRECTORY (diff) | |
download | tgif-9768648144e8597890d371d9581eb26da52a4922.tar.xz |
Merge branch 'maint'
* maint:
git-prune-packed.txt: fix reference to GIT_OBJECT_DIRECTORY
clone --branch: refuse to clone if upstream repo is empty
Diffstat (limited to 'builtin/clone.c')
-rw-r--r-- | builtin/clone.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/builtin/clone.c b/builtin/clone.c index 0aff974a64..b708c115a3 100644 --- a/builtin/clone.c +++ b/builtin/clone.c @@ -945,6 +945,10 @@ int cmd_clone(int argc, const char **argv, const char *prefix) our_head_points_at = remote_head_points_at; } else { + if (option_branch) + die(_("Remote branch %s not found in upstream %s"), + option_branch, option_origin); + warning(_("You appear to have cloned an empty repository.")); mapped_refs = NULL; our_head_points_at = NULL; |