reset remote origin git code example

Example 1: git update remote origin

git remote set-url origin new.git.url/here

Example 2: change remote url git

git remote set-url origin https://hostname/USERNAME/REPOSITORY.git

Example 3: git change remote

$ 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: set git origin

git remote add origin git@git.assembla.com:portfolio/space.space_name.git

Example 6: git reset branch

git fetch origin
git reset --hard origin/branch_name