0
Q:

get git remote url

 git config --get remote.origin.url
1
# Check existing git url:
git remote -v
5
# 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
9
git config --get remote.origin.url
0
$ 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)
0
$ git remote set-url origin https://github.com/USERNAME/REPOSITORY.git
1
# when you are not connected to the network, you can use this
git config --get remote.origin.url
5

New to Communities?

Join the community