Revert "Protect {tree} from being expanded by the shell."

This reverts commit bff909b882.
git-tag is now a builtin and does not need the extra escaping anymore.
This commit is contained in:
Johannes Sixt
2007-11-16 08:58:13 +01:00
parent 157737a3d9
commit ff1c27fb4e

View File

@@ -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 &&