| # Copyright (c) 2009 Eric Wong |
| test_description='git svn property tests' |
| test_expect_success 'setup repo with a git repo inside it' ' |
| svn commit -m "create a nested git repo" && |
| svn commit -m "modify .git/a" && |
| test_expect_success 'clone an SVN repo containing a git repo' ' |
| git svn clone "$svnrepo" g && |
| test_expect_success 'SVN-side change outside of .git' ' |
| svn commit -m "SVN-side change outside of .git" && |
| svn log -v | fgrep "SVN-side change outside of .git" |
| test_expect_success 'update git svn-cloned repo' ' |
| test_expect_success 'SVN-side change inside of .git' ' |
| git commit -m "add a inside an SVN repo" && |
| svn commit -m "SVN-side change inside of .git" && |
| svn log -v | fgrep "SVN-side change inside of .git" |
| test_expect_success 'update git svn-cloned repo' ' |
| test_expect_success 'SVN-side change in and out of .git' ' |
| git commit -m "add a inside an SVN repo" && |
| svn commit -m "SVN-side change in and out of .git" && |
| svn log -v | fgrep "SVN-side change in and out of .git" |
| test_expect_success 'update git svn-cloned repo again' ' |