java - How to migrate git project to SVN? Which god can give me some advice?
迷茫
迷茫 2017-06-12 09:25:13
0
1
931

How to migrate git project to SVN? Who can give me some advice

迷茫
迷茫

业精于勤,荒于嬉;行成于思,毁于随。

reply all(1)
女神的闺蜜爱上我
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 origin/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

For specific details, please refer to https://stackoverflow.com/que...

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template