我有一个旧的仓库的本地副本,已经在Github上删除了。
这个本地副本只是一个简单的克隆(没有-bare或-mirror):
git clone https://github.com/olduser/oldrepo.git
这个旧的Github用户帐户我已经失控了。
如何将此已删除的repo上传回Github,同时保留所有提交历史记录?
我想要的是将它恢复为分叉,并将其恢复到新位置:
https://github.com/newuser/newrepo.git
有可能吗?
答案 0 :(得分:2)
git remote set-url origin https://github.com/newuser/newrepo.git
后跟git push origin
应该这样做。