I am receiving this notice when I push updates from my local instance to remote master on GitHub:
remote: This repository moved. Please use the new location [new location]
Is there a way to fix this?
2022-11-08
I am receiving this notice when I push updates from my local instance to remote master on GitHub:
remote: This repository moved. Please use the new location [new location]
Is there a way to fix this?
The simple way is:
git remote set-url origin [updated link url https://........git]
Alternatively, if you like the long way it is:
git remote rm origin
git remote add origin [updated link]
Changing a remote's URL GitHub documentation goes into further detail.