Shell/Bash: change remote url github Example
Shell/Bash Example: This is the "change remote url github" Example. compiled from many sources on the internet by SimpleTutorials.org
change git remote
git remote set-url origin [email protected]:user/repository2.git
git change origin
$ git remote -v > origin https://github.com/USERNAME/REPOSITORY.git (fetch) > origin https://github.com/USERNAME/REPOSITORY.git (push) Change your remote\'s URL from HTTPS to SSH with the git remote set-url command. $ git remote set-url origin [email protected]:USERNAME/REPOSITORY.git Verify that the remote URL has changed. $ git remote -v # Verify new remote URL > origin [email protected]:USERNAME/REPOSITORY.git (fetch) > origin [email protected]:USERNAME/REPOSITORY.git (push)
change remote url github
$ git remote set-url origin https://github.com/USERNAME/REPOSITORY.git
* Summary: This "change remote url github" Shell/Bash Example is compiled from the internet. If you have any questions, please leave a comment. Thank you!