Skip to content

Commit 509efef

Browse files
SyntevoAlexgitster
authored andcommitted
commit: forbid --pathspec-from-file --all
I forgot this in my previous patch `--pathspec-from-file` for `git commit` [1]. When both `--pathspec-from-file` and `--all` were specified, `--all` took precedence and `--pathspec-from-file` was ignored. Before `--pathspec-from-file` was implemented, this case was prevented by this check in `parse_and_validate_options()` : die(_("paths '%s ...' with -a does not make sense"), argv[0]); It is unfortunate that these two cases are disconnected. This came as result of how the code was laid out before my patches, where `pathspec` is parsed outside of `parse_and_validate_options()`. This branch is already full of refactoring patches and I did not dare to go for another one. Fix by mirroring `die()` for `--pathspec-from-file` as well. [1] Commit e440fc5 ("commit: support the --pathspec-from-file option" 2019-11-19) Reported-by: Phillip Wood <[email protected]> Signed-off-by: Alexandr Miloslavskiy <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent e440fc5 commit 509efef

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

builtin/commit.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -347,6 +347,9 @@ static const char *prepare_index(int argc, const char **argv, const char *prefix
347347
if (interactive)
348348
die(_("--pathspec-from-file is incompatible with --interactive/--patch"));
349349

350+
if (all)
351+
die(_("--pathspec-from-file with -a does not make sense"));
352+
350353
if (pathspec.nr)
351354
die(_("--pathspec-from-file is incompatible with pathspec arguments"));
352355

t/t7526-commit-pathspec-file.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,4 +127,10 @@ test_expect_success 'only touches what was listed' '
127127
verify_expect
128128
'
129129

130+
test_expect_success '--pathspec-from-file and --all cannot be used together' '
131+
restore_checkpoint &&
132+
test_must_fail git commit --pathspec-from-file=- --all -m "Commit" 2>err &&
133+
test_i18ngrep "[-]-pathspec-from-file with -a does not make sense" err
134+
'
135+
130136
test_done

0 commit comments

Comments
 (0)