git remote add

C++
 git config --get remote.origin.url git remote -v
 git remote set-url origin https://github.com/USERNAME/REPOSITORY.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)# If you require full output and you are on a network that can reach the remote repo where the origin resides 
git remote show origin
git remote -vgit remote add origin https://github.com/user/repo.git
Source

Also in C++: