Git Origin Remote SSH URL change

Git Origin Remote SSH URL change

In order to change the Remote SSH URL of a Git, we have to use the set-url command and specify the name of the remote as well as the new remote URL to be changed.

When we do git clone the project, automatically remote SSH URL repository is the default origin for Push and Fetch. Now if we want to change the remote SSH URL point to another repository then we have to update the remote URL like as follows.

Existing Remote SSH URL:

$ git clone [email protected]/JavaMail.git
$ git remote -v
origin  [email protected]/JavaMail.git (fetch)
origin  [email protected]/JavaMail.git (push)

Here remote SSH URL is [email protected]/JavaMail.git

If we want to change the remote SSH URL, we need to use the set-url command.

Set new Remote URL:

Syntax

 $ git remote set-url <remote_name> <remote_ssh_url>

Example:

$ git remote set-url origin [email protected]/JavaMail_New.git
$ git remote -v
origin [email protected]/JavaMail_New.git (fetch)
origin [email protected]/JavaMail_New.git (push)

Now we can push the project into the new repository JavaMail_New.git

Leave a Reply