git remote show origin displays info for your remote origin repo. I typically use this when I want to get the URL or the remote repo
$ git remote show origin
* remote origin
Fetch URL: git@bitbucket.org:Keenlio/test-repo.git
Push URL: git@bitbucket.org:Keenlio/test-repo.git
HEAD branch: master
Remote branches:
iss1903_microsite tracked
iss1907_baidu_staticmap tracked
iss1910_retailer_map_pic tracked
master tracked
Local branch configured for ‘git pull’:
master merges with remote master
Local ref configured for ‘git push’:
master pushes to master (fast-forwardable)
What do you think?