Skip to content

Commit

Permalink
Merge branch 'jc/add-u-A-default-to-top' into maint
Browse files Browse the repository at this point in the history
"git --literal-pathspecs add -u/-A" without any command line
argument misbehaved ever since Git 2.0.

* jc/add-u-A-default-to-top:
  add: simplify -u/-A without pathspec
  • Loading branch information
gitster committed Nov 5, 2015
2 parents 5e6154f + 29abb33 commit a878e7e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
8 changes: 1 addition & 7 deletions builtin/add.c
Expand Up @@ -336,14 +336,8 @@ int cmd_add(int argc, const char **argv, const char *prefix)
if (!show_only && ignore_missing)
die(_("Option --ignore-missing can only be used together with --dry-run"));

if ((0 < addremove_explicit || take_worktree_changes) && !argc) {
static const char *whole[2] = { ":/", NULL };
argc = 1;
argv = whole;
}

add_new_files = !take_worktree_changes && !refresh_only;
require_pathspec = !take_worktree_changes;
require_pathspec = !(take_worktree_changes || (0 < addremove_explicit));

hold_locked_index(&lock_file, 1);

Expand Down
2 changes: 2 additions & 0 deletions t/t2200-add-update.sh
Expand Up @@ -84,6 +84,8 @@ test_expect_success 'non-qualified update in subdir updates from the root' '
(
cd dir1 &&
echo even more >>sub2 &&
git --literal-pathspecs add -u &&
echo even more >>sub2 &&
git add -u
) &&
: >expect &&
Expand Down
1 change: 1 addition & 0 deletions t/t2202-add-addremove.sh
Expand Up @@ -14,6 +14,7 @@ test_expect_success setup '
echo expect
echo ignored
) >.gitignore &&
git --literal-pathspecs add --all &&
>will-remove &&
git add --all &&
test_tick &&
Expand Down

0 comments on commit a878e7e

Please sign in to comment.