有没有办法单独或全部显示有关存储库遥控器的所有已知信息?
答案 0 :(得分:8)
您可以看到原始配置
cat .git/config
或使用remote
子命令
git remote -v
答案 1 :(得分:4)
很简单:
git remote show
git remote show <specific-remote>
答案 2 :(得分:1)
git remote
应该适用于这种情况。
git remote show origin
(或您可能拥有的任何其他遥控器)。
答案 3 :(得分:0)
此别名将提供当前遥控器的详细信息:
alias showremote="git remote show $(git remote show)"