diff options
author | Christian Couder <christian.couder@gmail.com> | 2018-06-01 07:08:33 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-06-04 04:22:45 +0200 |
commit | 78f28e2a11acde9381496ef7626a0d509c742af5 (patch) | |
tree | b0e97f05917a9ab5b7681f5cda2e34d5aa04625c | |
parent | t990X: use '.git/objects' as 'deep inside .git' path (diff) | |
download | git-78f28e2a11acde9381496ef7626a0d509c742af5.tar.xz git-78f28e2a11acde9381496ef7626a0d509c742af5.zip |
t9104: kosherly remove remote refs
As there are plans to implement other ref storage systems,
let's use a way to remove remote refs that does not depend
on refs being files.
This makes it clear to readers that this test does not
depend on which ref backend is used.
Suggested-by: Michael Haggerty <mhagger@alum.mit.edu>
Helped-by: Jeff King <peff@peff.net>
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-x | t/t9104-git-svn-follow-parent.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/t/t9104-git-svn-follow-parent.sh b/t/t9104-git-svn-follow-parent.sh index 0c9c8f9f03..a9734a32bf 100755 --- a/t/t9104-git-svn-follow-parent.sh +++ b/t/t9104-git-svn-follow-parent.sh @@ -213,7 +213,9 @@ test_expect_success "multi-fetch continues to work" " " test_expect_success "multi-fetch works off a 'clean' repository" ' - rm -rf "$GIT_DIR/svn" "$GIT_DIR/refs/remotes" && + rm -rf "$GIT_DIR/svn" && + git for-each-ref --format="option no-deref%0adelete %(refname)" refs/remotes | + git update-ref --stdin && git reflog expire --all --expire=all && mkdir "$GIT_DIR/svn" && git svn multi-fetch |