diff options
author | Junio C Hamano <gitster@pobox.com> | 2012-07-02 12:04:52 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-07-09 16:42:22 -0700 |
commit | cd74e4733db3e2353077bdc7021caa70bed2a483 (patch) | |
tree | 0f8f243291844cb4208996065ff8ca84b99a4de1 /t/t1512-rev-parse-disambiguation.sh | |
parent | 33bd598c3902c40c5a10a68aeaa3004484239258 (diff) | |
download | git-cd74e4733db3e2353077bdc7021caa70bed2a483.tar.gz |
sha1_name.c: introduce get_sha1_committish()
Many callers know that the user meant to name a committish by
syntactical positions where the object name appears. Calling this
function allows the machinery to disambiguate shorter-than-unique
abbreviated object names between committish and others.
Note that this does NOT error out when the named object is not a
committish. It is merely to give a hint to the disambiguation
machinery.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t1512-rev-parse-disambiguation.sh')
-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 7652f1c2e9..6f87d8ea9d 100755 --- a/t/t1512-rev-parse-disambiguation.sh +++ b/t/t1512-rev-parse-disambiguation.sh @@ -102,7 +102,7 @@ test_expect_failure 'disambiguate commit' ' test $(git rev-parse $commit^) = $(git rev-parse 0000000000e4f) ' -test_expect_failure 'log name1..name2 takes only commit-ishes on both ends' ' +test_expect_success 'log name1..name2 takes only commit-ishes on both ends' ' git log 000000000..000000000 && git log ..000000000 && git log 000000000.. && |