diff options
author | Junio C Hamano <gitster@pobox.com> | 2011-09-16 21:48:10 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-09-16 21:48:10 -0700 |
commit | c103e9529c8a95b5acf4747cfe06b2f6adedab71 (patch) | |
tree | c57aadfd0da7010b5a916e21dd3b4d239b28ac62 /builtin/checkout.c | |
parent | 26e4266f2fee3454370885ff480b38d045ca1731 (diff) | |
parent | fa79937675600ad5dda5031c532097a0461d843e (diff) | |
download | git-c103e9529c8a95b5acf4747cfe06b2f6adedab71.tar.gz |
Merge branch 'ci/forbid-unwanted-current-branch-update'
* ci/forbid-unwanted-current-branch-update:
branch --set-upstream: regression fix
Diffstat (limited to 'builtin/checkout.c')
-rw-r--r-- | builtin/checkout.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/builtin/checkout.c b/builtin/checkout.c index 3bb652591b..5e356a6c61 100644 --- a/builtin/checkout.c +++ b/builtin/checkout.c @@ -1073,7 +1073,8 @@ int cmd_checkout(int argc, const char **argv, const char *prefix) if (opts.new_branch) { struct strbuf buf = STRBUF_INIT; - opts.branch_exists = validate_new_branchname(opts.new_branch, &buf, !!opts.new_branch_force); + opts.branch_exists = validate_new_branchname(opts.new_branch, &buf, + !!opts.new_branch_force, 0); strbuf_release(&buf); } |