2017-02-05 25 views
-2

私は実際にBitbucketにリポジトリを持っています。私はSVNシステムに移行したいと思います。ネット上のガイドのほとんどは、SVNからGITへ、逆のガイドラインはほとんどありません。GitからSVNへ

私は亀SVNを使用して、など詰め込むのカップルが試みられてきた:

1. cd /path/to/git/localrepo 
2. svn mkdir --parents protocol:///path/to/repo/PROJECT/trunk -m "Importing git repo" 
3. git svn init protocol:///path/to/repo/PROJECT -s 
4. git svn fetch 
5. git rebase trunk 
5.1 git status 
5.2 git add (conflicted-files) 
5.3 git rebase --continue 
5.4. (repeat 5.1.) 
6. git svn dcommit 

は必ずエラーにクラッシュします。それを行う方法について誰でも良い考えがありますか?

+2

これらのエラーは何ですか? –

+0

@UweKeimセッションを作成できません: 'file:/// D:%5CRepositoryTest':リポジトリ 'file:/// D:%CRepositoryTest'を/ mingw64/share /に開くことができません。 perl5/site_perl/Git/SVN.pm行310 –

+0

3番目のステップを実行するとクラッシュします。 git svn initプロトコル:/// path/to/repo/PROJECT -s @UweKeim –

答えて

0

あなたのコメントはfile:///D:%5CRepositoryTest%5C\のURLエンコーディングで言うように、私はあなたがgit svn init file:///D:/RepositoryTest -sを行う必要がありgit svn init file:///D:\RepositoryTest -sを行うと思います。

関連する問題