Git show remote url command

· Adrian Matei · Nov. 20, 2021, 6:08 a.m.
Summary
The simplest way git remote -v #result something similar to the following origin [email protected]:CodepediaOrg/codepediaorg.github.io.git (fetch) origin [email protected]:CodepediaOrg/codepediaorg.github.io.git (push) Tip to get only the remote URL: git config --get remote.origin.url #result something similar to the following [email protected]:CodepediaOrg/codepediaorg.github.io.git In order to get more details about a particular remote, use the git remote show [remote-name] command git remote sho...
AUTHOR