diff options
author | Han-Wen Nienhuys <hanwen@google.com> | 2020-05-20 19:36:08 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-05-20 19:39:01 +0200 |
commit | cdb73ca56f21835b93345442a96c97f6a0589ef7 (patch) | |
tree | ff5bb46f3348f16a57ae4c949105d6298b9ec6a8 /t/t0002-gitfile.sh | |
parent | refs.h: clarify reflog iteration order (diff) | |
download | git-cdb73ca56f21835b93345442a96c97f6a0589ef7.tar.xz git-cdb73ca56f21835b93345442a96c97f6a0589ef7.zip |
t: use update-ref and show-ref to reading/writing refs
Reading and writing .git/refs/* assumes that refs are stored in the 'files'
ref backend.
Signed-off-by: Han-Wen Nienhuys <hanwen@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t0002-gitfile.sh')
-rwxr-xr-x | t/t0002-gitfile.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t0002-gitfile.sh b/t/t0002-gitfile.sh index 0aa9908ea1..960ed150cb 100755 --- a/t/t0002-gitfile.sh +++ b/t/t0002-gitfile.sh @@ -62,7 +62,7 @@ test_expect_success 'check commit-tree' ' ' test_expect_success 'check rev-list' ' - echo $SHA >"$REAL/HEAD" && + git update-ref "HEAD" "$SHA" && test "$SHA" = "$(git rev-list HEAD)" ' |