From ff1c27fb4e28c253de43b6ca3e8ab00d594fb9c5 Mon Sep 17 00:00:00 2001 From: Johannes Sixt Date: Fri, 16 Nov 2007 08:58:13 +0100 Subject: [PATCH] Revert "Protect {tree} from being expanded by the shell." This reverts commit bff909b88259160b50823f277ea8c1426e4f7aa0. git-tag is now a builtin and does not need the extra escaping anymore. --- t/t5515-fetch-merge-logic.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/t/t5515-fetch-merge-logic.sh b/t/t5515-fetch-merge-logic.sh index 483a554d94..31c1081617 100755 --- a/t/t5515-fetch-merge-logic.sh +++ b/t/t5515-fetch-merge-logic.sh @@ -20,7 +20,7 @@ test_expect_success setup ' git add file && git commit -a -m One && git tag tag-one && - git-tag tag-one-tree HEAD^\{tree} && + git tag tag-one-tree HEAD^{tree} && git branch one && echo two >> file && @@ -31,7 +31,7 @@ test_expect_success setup ' echo three >> file && git commit -a -m Three && git tag -a -m "Tag Three" tag-three && - git-tag -a -m "Tag Three file" tag-three-file HEAD^\{tree}:file && + git tag -a -m "Tag Three file" tag-three-file HEAD^{tree}:file && git branch three && echo master >> file &&