如何仅使用分支名称而不是单个提交来鸟瞰 git 树?
我喜欢 git 的功能,它为我提供了一个可视化树,显示提交如何在各个分支上流动,但是如果提交很多,您可能会淹没在细节中。
我想知道如何在没有所有单独提交的情况下获得分支结构的基本轮廓,但无论如何都将分支名称放在正确的位置。
很像 gitk --all . ,但随后缩小了一点。
建议?
编辑:2013-03-16 - 我仍然没有找到一个好的解决方案。然而,我发现由于某种原因,Git Extensions 中的历史视图比 Eclipse 中的历史视图提供了更好的信息。
I like the ability of git to give me a visual tree showing how the commits flow on various branches, but with a lot of commits you may drown in detail.
I was wondering how I can just get the basic outline of the branch structure without all the individual commits, but with branch names put in the right locations anyway.
Much like gitk --all .
but then zoomed a bit out.
Suggestions?
EDIT: 2013-03-16 - I have still not found a good solution to this. I've found however that the history view in Git Extensions for some reason gives better information than the history view in Eclipse.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以使用
--simplify-by-decoration
选项:如果您是 CLI 迷,那么在控制台中也可以执行相同的操作:
You can use the
--simplify-by-decoration
option:And if you are a CLI junkie, the same is possible in the console as well:
我有一个 Ruby 脚本,它使用 graphviz 来显示存储库。它在非常大的存储库上消失(但您可以稍微调整它以不显示太多中间提交)。我在 git 培训期间使用它,并且发现它很有用。
更新:
我在这里写了关于它的博客。有图表的图片以及有关如何使用脚本的注释。
I have a little Ruby script that uses graphviz to display a repository. It dies on really large repositories (but you can tweak it a little to not display too many intermediate commits). I use it during my git trainings and I've found it useful.
Update:
I blogged about it here. There are pictures of the graphs as well as notes on how to use the scripts.
对于那些正在寻找 GUI 替代方案的人。我使用 GitUp 进行分支可视化。用户界面看起来时尚干净。不过,GitUp 可用于编辑 Git 存储库。我只使用它的可视化工具。它是免费、开源的,并且只有 9.1 MB。
另一个 GUI 工具是 Git 客户端,例如 Atlassian 的 Source Tree、Git Kraken 或 Git Tower。这些客户端通常具有内置的 Git 可视化工具。
For those who looking for GUI alternative. I use GitUp for Branch Visualisation. The UI looks sleek and clean. Although, GitUp can be used for editing Git repo. I only use its Visualisation tool. Its free, open source, and only 9.1 MB.
Another GUI tool is Git Client like Atlassian's Source Tree, Git Kraken or Git Tower. Those Client usually have built-in Git Visualisation tool.
使用提示。 com/questions/3666953/showing-git-branch-struct/">问题 VonC 链接在评论中,以下内容就足够了:
Using a hint from the question VonC linked in the comments, the following should suffice: