aboutsummaryrefslogtreecommitdiff
path: root/t/t5001-archive-attr.sh
diff options
context:
space:
mode:
authorJonathan Nieder <jrnieder@gmail.com>2010-07-27 13:32:36 -0500
committerJunio C Hamano <gitster@pobox.com>2010-07-27 13:28:54 -0700
commit35039ced9296786bc0971bf5385c0d6f6ea5ea1e (patch)
tree4267ce8dd84a6116fff0732b6924573932f2ecfc /t/t5001-archive-attr.sh
parent9a9fb5d3c4c8601beb2d7b8e3b9283c6c3815a2d (diff)
downloadgit-35039ced9296786bc0971bf5385c0d6f6ea5ea1e.tar.gz
git-35039ced9296786bc0971bf5385c0d6f6ea5ea1e.tar.xz
archive: abbreviate substituted commit ids again
Given a file with: (define archive-id "$Format:%ct|%h|a$") and an export-subst attribute, the "%h" results in an full 40-digit object name instead of the expected 7-digit one. The export-subst feature requests unabbreviated object names because that is the low-level default. The effect was not observable until v1.7.1.1~17^2~3 (2010-05-03), which taught log --format=%h to respect the --abbrev option. Reported-by: Eli Barzilay <eli@barzilay.org> Tested-by: Eli Barzilay <eli@barzilay.org> Signed-off-by: Jonathan Nieder <jrnieder@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t5001-archive-attr.sh')
-rwxr-xr-xt/t5001-archive-attr.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t5001-archive-attr.sh b/t/t5001-archive-attr.sh
index 426b319bd..02d4d2284 100755
--- a/t/t5001-archive-attr.sh
+++ b/t/t5001-archive-attr.sh
@@ -4,7 +4,7 @@ test_description='git archive attribute tests'
. ./test-lib.sh
-SUBSTFORMAT=%H%n
+SUBSTFORMAT='%H (%h)%n'
test_expect_exists() {
test_expect_success " $1 exists" "test -e $1"