Answers for "how to git remote set-url"

69

set new url for git

git remote set-url origin new.git.url/here
Posted by: Guest on March-29-2020
17

git config remote.origin.url

# change remote url
git remote set-url origin https://github.com/USERNAME/REPOSITORY.git
Posted by: Guest on July-16-2020
0

set new git url

# After cloning
cd gh-pages
git remote set-url origin https://scuzzlebuzzle:<MYTOKEN>@github.com/scuzzlebuzzle/ol3-1.git
Posted by: Guest on August-23-2021
0

git push url change

git remote set-url origin /original/repo
git remote set-url --push origin /your/fork
Posted by: Guest on June-04-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language