简单的问题,是否可以在我的GitHub上分叉一个Codeplex repo?
感谢。
答案 0 :(得分:2)
是的,您可以使用GitHub Importer并阅读其documentation。
答案 1 :(得分:0)
是的,但您首先需要使用Git克隆Codeplex存储库,如" Using Git with CodePlex"
所示然后你可以更改rmeote" origin",并将它指向你将创建的一个新的空GitHub仓库。
cd /path/to/local/clone
git remote set-url origin https://username@github.com/username/newrepo
git push --mirror
答案 2 :(得分:0)
如果是SVN存储库,则无法使用github导入程序,bitbucket导入程序,git svn
,svnrdump
甚至git2svn
(它只是不兼容并导致错误,因为这不是真正的svn而是TFS) - 所以你只能签出并推送到github最新版本的存储库。失去所有历史真的很难过。
如果你想从codeplex中派出一个git存储库,你可以像使用任何其他git存储库一样 - 就像他的答案中描述的VonC一样 - 添加两个来源,从codeplex中提取并推送到github上。