Magit等效于“ git remote -v”(列出远程对象)


20

我想知道是否有一个等效于git remote -v列出远程对象及其在git存储库中定义的URL的magit 。magit remotes弹出窗口提供了添加,删除,重命名和设置url的选项,但是我看不到任何列表机制。

样本git remote -v输出:

origin  ebpa@example.com:/var/git/myproject.git (fetch)
origin  ebpa@example.com:/var/git/myproject.git (push)

magit-list-remotes 是非交互式的,仅列出远程名称。


我不知道是什么magit的当前版本目前所提供的,但我写了我自己的推多个遥控器(几年前),与开始git remote -v使用start-process- Emacs的-如何推动一个Git仓库到多个遥控器stackoverflow.com/a/23178396/2112489
法律列表

Answers:


22

magit-show-refs-popupy)生成的缓冲区将提供包含如下内容的输出

Origin (ebpa@example.com:/var/git/myproject.git) (2)
  origin/HEAD               -> origin/master
  origin/master             Commit message

它正在使用git branch -vvr而不是 的输出git remote -v

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.