diff options
author | Sam Vilain <sam@vilain.net> | 2007-09-21 15:27:01 +1200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-09-21 02:42:16 -0700 |
commit | ffab62681cf420abb87aabf3fd2fc96e000877e4 (patch) | |
tree | e21ed32d1cc3e3859ad3c87d2adecc748d0b6030 | |
parent | git-svn: fix test for trunk svn (transaction out of date) (diff) | |
download | tgif-ffab62681cf420abb87aabf3fd2fc96e000877e4.tar.xz |
git-svn: handle changed svn command-line syntax
Previously, if you passed a revision and a path to svn cp, it meant to look
back at that revision and select that path. New behaviour is to get the
path then go back to the revision (like other commands that accept @REV
or -rREV do). The more consistent syntax is not supported by the old
tools, so we have to try both in turn.
Signed-off-by: Sam Vilain <sam.vilain@catalyst.net.nz>
Acked-by: Eric Wong <normalperson@yhbt.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-x | t/t9104-git-svn-follow-parent.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/t/t9104-git-svn-follow-parent.sh b/t/t9104-git-svn-follow-parent.sh index 9eab94569f..7ba76309ac 100755 --- a/t/t9104-git-svn-follow-parent.sh +++ b/t/t9104-git-svn-follow-parent.sh @@ -51,8 +51,10 @@ test_expect_success 'init and fetch from one svn-remote' " " test_expect_success 'follow deleted parent' " - svn cp -m 'resurrecting trunk as junk' \ - -r2 $svnrepo/trunk $svnrepo/junk && + (svn cp -m 'resurrecting trunk as junk' \ + $svnrepo/trunk@2 $svnrepo/junk || + svn cp -m 'resurrecting trunk as junk' \ + -r2 $svnrepo/trunk $svnrepo/junk) && git config --add svn-remote.svn.fetch \ junk:refs/remotes/svn/junk && git-svn fetch -i svn/thunk && |