diff options
author | Junio C Hamano <gitster@pobox.com> | 2012-07-03 10:04:22 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-07-09 16:42:23 -0700 |
commit | 13243c2c7a758bb6510ba26d0372f384b5f422ce (patch) | |
tree | ed04f6f91f46ec6049d3255deb50d3f2a7054758 /t | |
parent | commit-tree: the command wants a tree and commits (diff) | |
download | tgif-13243c2c7a758bb6510ba26d0372f384b5f422ce.tar.xz |
reset: the command takes committish
This is not strictly correct, in that resetting selected index
entries from corresponding paths out of a given tree without moving
HEAD is a valid operation, and in such case a tree-ish would suffice.
But the existing code already requires a committish in the codepath,
so let's be consistent with it for now.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
-rwxr-xr-x | t/t1512-rev-parse-disambiguation.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t1512-rev-parse-disambiguation.sh b/t/t1512-rev-parse-disambiguation.sh index dc56f81cb7..0210998800 100755 --- a/t/t1512-rev-parse-disambiguation.sh +++ b/t/t1512-rev-parse-disambiguation.sh @@ -121,7 +121,7 @@ test_expect_success 'git log takes only commit-ish' ' git log 000000000 ' -test_expect_failure 'git reset takes only commit-ish' ' +test_expect_success 'git reset takes only commit-ish' ' git reset 000000000 ' |