Command

HOW to change remote’s URL in Git?

There are various scenario where you want to change the remote’s URL in your git repository. You can fire git remote set-url command to change/ update existing remote repository URL. The git remote set-url command takes two arguments: An existing remote name. For example, origin or upstream are two common choices. A new URL for the remote. For example: If you’re updating to …

HOW to change remote’s URL in Git? Read More »

Scroll to Top