checkout: check_linked_checkout: simplify symref parsing
[gitweb.git] / builtin / worktree.c
index 25fe25b45f7771bb3b000ae92aa5f24875adc51e..69248ba0a352de82f59a117b9ba4ed4e6af74a4d 100644 (file)
@@ -289,11 +289,17 @@ static int add(int ac, const char **av, const char *prefix)
        ac = parse_options(ac, av, prefix, options, worktree_usage, 0);
        if (new_branch && new_branch_force)
                die(_("-b and -B are mutually exclusive"));
-       if (ac != 2)
+       if (ac < 1 || ac > 2)
                usage_with_options(worktree_usage, options);
 
        path = prefix ? prefix_filename(prefix, strlen(prefix), av[0]) : av[0];
-       branch = av[1];
+       branch = ac < 2 ? "HEAD" : av[1];
+
+       if (ac < 2 && !new_branch && !new_branch_force) {
+               int n;
+               const char *s = worktree_basename(path, &n);
+               new_branch = xstrndup(s, n);
+       }
 
        argv_array_push(&cmd, "checkout");
        if (force)