Git Cheat Sheet/Change remote URL

Update fetch and push destination.

Section: Remotes and Collaboration

Change remote URL

bash
bash
git remote set-url origin git@github.com:owner/repo.git

Learn the surrounding workflow

Compare similar commands or jump into common fixes when this command is part of a bigger troubleshooting path.

Related commands

Same sheet · prioritizing Remotes and Collaboration
List remotes
Show remote names and URLs.
OpenIn sheetbashsame section
Add origin remote
Add a remote repository.
OpenIn sheetbashsame section
Fetch from origin
Download remote refs and objects.
OpenIn sheetbashsame section
Fetch all remotes and prune
Refresh all remotes and remove stale remote-tracking branches.
OpenIn sheetbashsame section
Pull with rebase
Fetch and replay local commits on top of upstream.
OpenIn sheetbashsame section
Push and set upstream
Push a new branch and configure tracking.
OpenIn sheetbashsame section