forked from git/git
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
reset: reinstate support for the deprecated --stdin option
The `--stdin` option was a well-established paradigm in other commands, therefore we implemented it in `git reset` for use by Visual Studio. Unfortunately, upstream Git decided that it is time to introduce `--pathspec-from-file` instead. To keep backwards-compatibility for some grace period, we therefore reinstate the `--stdin` option on top of the `--pathspec-from-file` option, but mark it firmly as deprecated. Helped-by: Victoria Dye <vdye@github.com> Helped-by: Matthew John Cheetham <mjcheetham@outlook.com> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
- Loading branch information
Showing
3 changed files
with
59 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
#!/bin/sh | ||
|
||
test_description='reset --stdin' | ||
|
||
. ./test-lib.sh | ||
|
||
test_expect_success 'reset --stdin' ' | ||
test_commit hello && | ||
git rm hello.t && | ||
test -z "$(git ls-files hello.t)" && | ||
echo hello.t | git reset --stdin && | ||
test hello.t = "$(git ls-files hello.t)" | ||
' | ||
|
||
test_expect_success 'reset --stdin -z' ' | ||
test_commit world && | ||
git rm hello.t world.t && | ||
test -z "$(git ls-files hello.t world.t)" && | ||
printf world.tQworld.tQhello.tQ | q_to_nul | git reset --stdin -z && | ||
printf "hello.t\nworld.t\n" >expect && | ||
git ls-files >actual && | ||
test_cmp expect actual | ||
' | ||
|
||
test_expect_success '--stdin requires --mixed' ' | ||
echo hello.t >list && | ||
test_must_fail git reset --soft --stdin <list && | ||
test_must_fail git reset --hard --stdin <list && | ||
git reset --mixed --stdin <list | ||
' | ||
|
||
test_done |