git專案遷移到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 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
具體細節參考https://stackoverflow.com/que...
具體細節參考https://stackoverflow.com/que...