Code

git-svn: fix test for trunk svn (commit message not needed)
authorSam Vilain <sam.vilain@catalyst.net.nz>
Fri, 21 Sep 2007 02:02:33 +0000 (14:02 +1200)
committerJunio C Hamano <gitster@pobox.com>
Fri, 21 Sep 2007 09:42:16 +0000 (02:42 -0700)
The 'svn mv -m "rename to thunk"' was a local operation, therefore not
needing a commit message, it was silently ignored.  Newer svn clients will
instead raise an error.

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>
t/t9104-git-svn-follow-parent.sh

index d8f9cab35dcff89469f1974dcc7130e3d38f471e..9eab94569f352503c000f31db25ff61e46222715 100755 (executable)
@@ -19,8 +19,7 @@ test_expect_success 'initialize repo' "
        poke trunk/readme &&
        svn commit -m 'another commit' &&
        svn up &&
-       svn mv -m 'rename to thunk' trunk thunk &&
-       svn up &&
+       svn mv trunk thunk &&
        echo goodbye >> thunk/readme &&
        poke thunk/readme &&
        svn commit -m 'bye now' &&