如何在Github上恢复已删除的存储库并保留所有提交历史记录?

时间:2016-03-16 12:49:38

标签: git github repository restore

我有一个旧的仓库的本地副本,已经在Github上删除了。

这个本地副本只是一个简单的克隆(没有-bare或-mirror):

git clone https://github.com/olduser/oldrepo.git

这个旧的Github用户帐户我已经失控了。

如何将此已删除的repo上传回Github,同时保留所有提交历史记录?

我想要的是将它恢复为分叉,并将其恢复到新位置:

https://github.com/newuser/newrepo.git

有可能吗?

1 个答案:

答案 0 :(得分:2)

git remote set-url origin https://github.com/newuser/newrepo.git后跟git push origin应该这样做。