summaryrefslogtreecommitdiff
path: root/builtin/worktree.c
diff options
context:
space:
mode:
authorEric Sunshine <sunshine@sunshineco.com>2015-07-17 23:00:06 (GMT)
committerJunio C Hamano <gitster@pobox.com>2015-07-20 18:29:24 (GMT)
commiteef005dcb3e039ccc3da65e9347cf4357bdeea6a (patch)
tree12e7d473ab012fd8ad357a6a8ea20eafb7f8028f /builtin/worktree.c
parentcd2f4713112119e18af8b5b580c5661a52320632 (diff)
downloadgit-eef005dcb3e039ccc3da65e9347cf4357bdeea6a.zip
git-eef005dcb3e039ccc3da65e9347cf4357bdeea6a.tar.gz
git-eef005dcb3e039ccc3da65e9347cf4357bdeea6a.tar.bz2
worktree: simplify new branch (-b/-B) option checking
Make 'new_branch' be the name of the new branch for both forced and non-forced cases; and add boolean 'force_new_branch' to indicate forced branch creation. This will simplify logic later on when git-worktree handles branch creation locally rather than delegating it to git-checkout as part of the worktree population phase. Signed-off-by: Eric Sunshine <sunshine@sunshineco.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/worktree.c')
-rw-r--r--builtin/worktree.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/builtin/worktree.c b/builtin/worktree.c
index 5f0e3c2..bf4db9f 100644
--- a/builtin/worktree.c
+++ b/builtin/worktree.c
@@ -272,7 +272,7 @@ static int add_worktree(const char *path, const char **child_argv)
static int add(int ac, const char **av, const char *prefix)
{
- int force = 0, detach = 0;
+ int force = 0, detach = 0, force_new_branch;
const char *new_branch = NULL, *new_branch_force = NULL;
const char *path, *branch;
struct argv_array cmd = ARGV_ARRAY_INIT;
@@ -295,7 +295,11 @@ static int add(int ac, const char **av, const char *prefix)
path = prefix ? prefix_filename(prefix, strlen(prefix), av[0]) : av[0];
branch = ac < 2 ? "HEAD" : av[1];
- if (ac < 2 && !new_branch && !new_branch_force) {
+ force_new_branch = !!new_branch_force;
+ if (force_new_branch)
+ new_branch = new_branch_force;
+
+ if (ac < 2 && !new_branch) {
int n;
const char *s = worktree_basename(path, &n);
new_branch = xstrndup(s, n);
@@ -305,9 +309,8 @@ static int add(int ac, const char **av, const char *prefix)
if (force)
argv_array_push(&cmd, "--ignore-other-worktrees");
if (new_branch)
- argv_array_pushl(&cmd, "-b", new_branch, NULL);
- if (new_branch_force)
- argv_array_pushl(&cmd, "-B", new_branch_force, NULL);
+ argv_array_pushl(&cmd, force_new_branch ? "-B" : "-b",
+ new_branch, NULL);
if (detach)
argv_array_push(&cmd, "--detach");
argv_array_push(&cmd, branch);