Reputation: 25036
Is there a way to display all known information about a repository's remotes, either individually or all at once?
Upvotes: 2
Views: 1820
Reputation: 2001
This alias will give detailed info for the current remote:
alias showremote="git remote show $(git remote show)"
Upvotes: 0
Reputation: 392833
You can see the raw configuration
cat .git/config
or use the remote
subcommand
git remote -v
Upvotes: 8
Reputation: 10103
git remote
should work in this case.
git remote show origin
(or any other remotes you may have).
Upvotes: 1