哪个 git 工具生成了这个树视图?

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/3509776/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-09-19 04:29:57  来源:igfitidea点击:

Which git tool generated this tree view?

git

提问by grm

alt text

替代文字

Just wondering which tool generated this git tree view? Thanks.

只是想知道哪个工具生成了这个 git 树视图?谢谢。

回答by P Shved

This is gitx, as suggested in other answers. However, this graph is not an achievement of this tool only; such a view can be generated by many tools (qgit, tortoisegit, gitg), including bare git itselfoutput to console!

这是gitx,正如其他答案中所建议的那样。然而,这张图不仅仅是这个工具的成就;许多工具(qgittortoisegitgitg)都可以生成这样的视图,包括直接输出到控制台的git 本身

回答by Andreas Rehm

Can be any of gitk, gitextensions, tortoisegit, and many more.

可以是 gitk、gitextensions、tortoisegit 等中的任何一个。

Looks like gitx http://gitx.frim.nl/seeit.html

看起来像 gitx http://gitx.frim.nl/seeit.html

回答by Rushi Agrawal

You can also use git log --graphto see the graphical view of commits, very similar to what is shown above in the picture, but from commandline, and without installing any additional software

您还可以使用git log --graph来查看提交的图形视图,与上图中显示的非常相似,但来自命令行,无需安装任何其他软件

回答by corroded