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
# Set a new remote

$ git remote -v
# Verify new remote
> 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>