错误与github中重命名回购,“远程:此库移动。 请使用新的位置“

我收到此通知: remote: This repository moved. Please use the new location [new location] 当我将更新从本地实例推送到GitHub上的远程主服务器时, remote: This repository moved. Please use the new location [new location]

有没有办法来解决这个问题?

简单的方法是:

  git remote set-url origin [updated link url https://........git] 

另外,如果你喜欢漫长的道路:

  git remote rm origin git remote add origin [updated link] 

更改远程的URL github文档进一步的细节。

要检查当前的一个:

  git remote -v 

然后改变它:

  git remote set-url origin https://github.com/YOUR-USERNAME/YOUR-REPO.git