git remote -v
git remote set-url origin https://github.com/USERNAME/REPOSITORY.git
$ git remote -v
> origin https://github.com/USERNAME/REPOSITORY.git (fetch)
> origin https://github.com/USERNAME/REPOSITORY.git (push)
Change your remote's URL from HTTPS to SSH with the git remote set-url command.
$ git remote set-url origin git@github.com:USERNAME/REPOSITORY.git
Verify that the remote URL has changed.
$ git remote -v
# Verify new remote URL
> origin git@github.com:USERNAME/REPOSITORY.git (fetch)
> origin git@github.com:USERNAME/REPOSITORY.git (push)
git remote set-url origin {yourNewGitURL}
git remote add origin git@git.assembla.com:portfolio/space.space_name.git
git remote add origin git@github.com:User/UserRepo.git
git remote set-url origin https://<your-username>:<token>@github.com/<username>/<repo-name>.git
# if you face the following error, or adding for the first time
# fatal: No such remote 'origin'
# use this
git remote add origin https://<your-username>:<token>@github.com/<username>/<repo-name>.git