Answers for "git get repository url"

29

get git remote url

git config --get remote.origin.url
Posted by: Guest on May-12-2020
7

git get repository url

git config --get remote.origin.url
Posted by: Guest on March-13-2020
7

check git url

# Check existing git url:
git remote -v
Posted by: Guest on July-14-2020
3

git command to get the repo url

git remote show origin
Posted by: Guest on June-11-2020
0

check git url

without network
git config --get remote.origin.url

with network (detailed)
git remote show origin
Posted by: Guest on June-03-2021
0

how to get github url

git remote -v
git config --get remote.origin.url
git remote show origin
git config --get remote.origin.url
Posted by: Guest on January-28-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language