set remote origin url git code example
Example 1: change remote repository git
git remote set-url origin [email protected]:/your-repository.git
Example 2: change remote url git
git remote set-url origin https://hostname/USERNAME/REPOSITORY.git
Example 3: set remote url git
$ git remote set-url origin https://github.com/USERNAME/REPOSITORY.git
Example 4: set remote url git
$ git remote add origin https://github.com/user/repo.git
$ git remote -v
> origin https://github.com/user/repo.git (fetch)
> origin https://github.com/user/repo.git (push)
Example 5: git update upstream url
git remote set-url upstream https://hostname/USERNAME/REPOSITORY.git
Example 6: set origin url git
git remote add origin <git_url>