-2

我们有现有的存储库,我必须将源代码移动到新存储库并保留历史记录。

4

1 回答 1

3

在 Github 上创建一个 repo,然后使用命令行

cd /path/to/your/repo
git remote set-url origin <github URL>
git pull origin master
git push -u origin master

基本上,您将默认origin远程 URL 更改为指向 Github 的。

于 2013-08-27T11:01:08.683 回答