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.
To check the current one:
git remote -v
Then to change it:
git remote set-url origin https://github.com/YOUR-USERNAME/YOUR-REPO.git
This is an upgrade on the answers I found. Check the current one :
git remote -v
With the above command you will get a result like
origin https://github.com/YOUR-USERNAME/YOUR-REPO (fetch)
origin https://github.com/YOUR-USERNAME/YOUR-REPO (push)
Note this, here is the difference, it MAY NOT always be origin.
You write the command based on what you found. So if it was origin, Then you change it like :
git remote set-url origin https://github.com/YOUR-USERNAME/YOUR-REPO
If it was upstream, you change it like:
git remote set-url upstream https://github.com/YOUR-USERNAME/YOUR-REPO
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With