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