summaryrefslogtreecommitdiff
path: root/t/t4116-apply-reverse.sh
diff options
context:
space:
mode:
authorJohn Keeping <john@keeping.me.uk>2013-11-10 15:47:29 (GMT)
committerJunio C Hamano <gitster@pobox.com>2013-11-12 22:10:19 (GMT)
commit925ceccf050e2998c2b805476b529bdf5352cf74 (patch)
tree306aa79d2d43c22720644c67d655d7a3540970ac /t/t4116-apply-reverse.sh
parenteb8e7e1d9a946f439e0e35f2ada9efb434ea8b60 (diff)
downloadgit-925ceccf050e2998c2b805476b529bdf5352cf74.zip
git-925ceccf050e2998c2b805476b529bdf5352cf74.tar.gz
git-925ceccf050e2998c2b805476b529bdf5352cf74.tar.bz2
tar-tree: remove deprecated command
"git tar-tree" has been a thin wrapper around "git archive" since commit fd88d9c (Remove upload-tar and make git-tar-tree a thin wrapper to git-archive, 2006-09-24), which also made it print a message indicating that git-tar-tree is deprecated. Signed-off-by: John Keeping <john@keeping.me.uk> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t4116-apply-reverse.sh')
-rwxr-xr-xt/t4116-apply-reverse.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t4116-apply-reverse.sh b/t/t4116-apply-reverse.sh
index 2298ece..1e4d438 100755
--- a/t/t4116-apply-reverse.sh
+++ b/t/t4116-apply-reverse.sh
@@ -48,12 +48,12 @@ test_expect_success 'apply in reverse' '
test_expect_success 'setup separate repository lacking postimage' '
- git tar-tree initial initial | $TAR xf - &&
+ git archive --format=tar --prefix=initial/ initial | $TAR xf - &&
(
cd initial && git init && git add .
) &&
- git tar-tree second second | $TAR xf - &&
+ git archive --format=tar --prefix=second/ second | $TAR xf - &&
(
cd second && git init && git add .
)