2008-06-24 08:17:36 +08:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Copyright (c) 2008 Jan Krüger
|
|
|
|
#
|
|
|
|
|
2008-09-08 18:02:08 +08:00
|
|
|
test_description='git svn respects rewriteRoot during rebuild'
|
2008-06-24 08:17:36 +08:00
|
|
|
|
|
|
|
. ./lib-git-svn.sh
|
|
|
|
|
|
|
|
mkdir import
|
2010-09-07 02:39:54 +08:00
|
|
|
(cd import
|
2008-06-24 08:17:36 +08:00
|
|
|
touch foo
|
2009-05-08 16:06:16 +08:00
|
|
|
svn_cmd import -m 'import for git svn' . "$svnrepo" >/dev/null
|
2010-09-07 02:39:54 +08:00
|
|
|
)
|
2008-06-24 08:17:36 +08:00
|
|
|
rm -rf import
|
|
|
|
|
|
|
|
test_expect_success 'init, fetch and checkout repository' '
|
|
|
|
git svn init --rewrite-root=http://invalid.invalid/ "$svnrepo" &&
|
2010-10-31 09:46:54 +08:00
|
|
|
git svn fetch &&
|
2008-09-08 18:02:05 +08:00
|
|
|
git checkout -b mybranch ${remotes_git_svn}
|
2008-06-24 08:17:36 +08:00
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'remove rev_map' '
|
|
|
|
rm "$GIT_SVN_DIR"/.rev_map.*
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'rebuild rev_map' '
|
|
|
|
git svn rebase >/dev/null
|
|
|
|
'
|
|
|
|
|
|
|
|
test_done
|
|
|
|
|