- 1. Open Git Bash.
- 2. Change the current working directory to your local project.
- 3. List your existing remotes in order to get the name of the remote you want to change.
git remote -v origin git@github.com:USERNAME/REPOSITORY.git (fetch) origin git@github.com:USERNAME/REPOSITORY.git (push)
- 4. Change your remote's URL from SSH to HTTPS with the
git remote set-urlcommand.git remote set-url origin https://github.com/USERNAME/OTHERREPOSITORY.git - 5. Verify that the remote URL has changed.
git remote -v # Verify new remote URL origin https://github.com/USERNAME/OTHERREPOSITORY.git (fetch) origin https://github.com/USERNAME/OTHERREPOSITORY.git (push)
Search This Blog
Showing posts with label switch. Show all posts
Showing posts with label switch. Show all posts
Friday, August 26, 2016
GIT Switch branch or SVN Relocate Changing a remote's URL
GIT Switch branch or SVN Relocate Changing a remote's URL
- 1. Open Git Bash.
- 2. Change the current working directory to your local project.
- 3. List your existing remotes in order to get the name of the remote you want to change.
git remote -v origin git@github.com:USERNAME/REPOSITORY.git (fetch) origin git@github.com:USERNAME/REPOSITORY.git (push)
- 4. Change your remote's URL from SSH to HTTPS with the
git remote set-urlcommand.git remote set-url origin https://github.com/USERNAME/OTHERREPOSITORY.git - 5. Verify that the remote URL has changed.
git remote -v # Verify new remote URL origin https://github.com/USERNAME/OTHERREPOSITORY.git (fetch) origin https://github.com/USERNAME/OTHERREPOSITORY.git (push)
Subscribe to:
Posts (Atom)