···38# SVN 1.7 will truncate "not-a%40{0]" to just "not-a".
39# Look at what SVN wound up naming the branch and use that.
40# Be sure to escape the @ if it shows up.
41-non_reflog=$(svn_cmd ls "$svnrepo/pr ject/branches" | grep not-a | sed 's/\///' | sed 's/@/%40/')
4243test_expect_success 'test clone with funky branch names' '
44 git svn clone -s "$svnrepo/pr ject" project &&
···38# SVN 1.7 will truncate "not-a%40{0]" to just "not-a".
39# Look at what SVN wound up naming the branch and use that.
40# Be sure to escape the @ if it shows up.
41+non_reflog=$(svn_cmd ls "$svnrepo/pr ject/branches" | sed -ne '/not-a/ { s/\///; s/@/%40/; p }')
4243test_expect_success 'test clone with funky branch names' '
44 git svn clone -s "$svnrepo/pr ject" project &&
+1-1
t/t9350-fast-export.sh
···537538test_expect_success 'set-up a few more tags for tag export tests' '
539 git checkout -f main &&
540- HEAD_TREE=$(git show -s --pretty=raw HEAD | grep tree | sed "s/tree //") &&
541 git tag tree_tag -m "tagging a tree" $HEAD_TREE &&
542 git tag -a tree_tag-obj -m "tagging a tree" $HEAD_TREE &&
543 git tag tag-obj_tag -m "tagging a tag" tree_tag-obj &&
···537538test_expect_success 'set-up a few more tags for tag export tests' '
539 git checkout -f main &&
540+ HEAD_TREE=$(git show -s --pretty=raw HEAD | sed -n "/tree/s/tree //p") &&
541 git tag tree_tag -m "tagging a tree" $HEAD_TREE &&
542 git tag -a tree_tag-obj -m "tagging a tree" $HEAD_TREE &&
543 git tag tag-obj_tag -m "tagging a tag" tree_tag-obj &&