check git repository terminal code example
Example 1: git check upstream url
git remote show origin
Example 2: see git origin
git remote -v
Example 3: pull from existing git repo
git init .
git remote add origin [url of the repo]
git fetch origin
// To push
git push --set-upstream origin master
git branch -f master origin/master
Example 4: get repository url git cil
git config -l