我在xp-dev中有一个存储库,我想移动到github。我没有xp-dev的经验,但我知道github。我如何将该存储库迁移到github?
答案 0 :(得分:0)
最简单的方法是克隆你的xp-dev repo,并将一个遥控器克隆到GitHub并将其推送到那里:
git clone --mirror <xp-dev-url>
cd xpdevRepo
git remote add github newGitHubRepoUrl
git push -f --tags github refs/heads/*:refs/heads/*
假设你先在GitHub上创建了一个空的回购。