我可以从Visual Studio Code中执行各种Git命令,但是我找不到一种方法来可视化历史。
当前回答
在Visual Studio Code 1.44或更高版本中,你不需要一个插件来查看提交历史。
Timeline view This is a unified view for visualizing time-series events (for example, Git commits, file saves, test runs, etc.) for a file. The Timeline view automatically updates showing the timeline for the currently active editor, by default. You can control this default behavior by toggling the eye icon in the view toolbar. Also, similar to other views, the Timeline view supports find or filter as you type. The Timeline view is collapsed by default at the bottom of the File Explorer. Selecting the Timeline sash will expand the Timeline view. [...] Here is the Timeline view in action:
其他回答
Git Graph似乎是一个不错的扩展。安装完成后,您可以从底部状态栏打开图形视图。
在Visual Studio Code 1.44或更高版本中,你不需要一个插件来查看提交历史。
Timeline view This is a unified view for visualizing time-series events (for example, Git commits, file saves, test runs, etc.) for a file. The Timeline view automatically updates showing the timeline for the currently active editor, by default. You can control this default behavior by toggling the eye icon in the view toolbar. Also, similar to other views, the Timeline view supports find or filter as you type. The Timeline view is collapsed by default at the bottom of the File Explorer. Selecting the Timeline sash will expand the Timeline view. [...] Here is the Timeline view in action:
我向您推荐这个存储库,https://github.com/DonJayamanne/gitHistoryVSCode
转到历史记录
它完全满足了您的需要,并具有以下功能:
查看提交的详细信息,如作者名称、电子邮件、日期、提交者名称、电子邮件、日期和评论。 查看该文件的先前副本或将其与本地副本进行比较 工作区版本或以前的版本。 在编辑器中查看对活动行的更改(Git Blame)。 配置列表中显示的信息 使用键盘快捷键查看文件或行的历史记录 查看Git日志(以及提交的详细信息,如作者姓名、电子邮件、评论和文件更改)。
我建议使用Git Graph扩展。
GitLens有一个很好的Git历史浏览器。从扩展市场安装GitLens,然后从命令面板运行“Show GitLens Explorer”。
推荐文章
- 如何预览git-pull?
- 如何删除git历史记录中的特定修订?
- 如何获得Git存储库中的Git存储库名称?
- 当git说它正在“解析delta”时,它实际上在做什么?
- Git命令将一个文件夹移动到另一个文件夹
- 在单个文件中重新启动/撤消冲突解决方案
- Visual Studio代码如何解决合并冲突与git?
- 无法推送到远程分支,无法解析到分支
- Git:如何将数据库重置为特定的提交?
- 如何在合并期间使用Git和命令行保存本地文件或远程文件?
- 能够用一个命令推到所有git遥控器?
- 重新基于Git合并提交
- 忽略已经签入目录的内容?
- Visual Studio代码-在文件末尾插入换行符
- 如何从windows cmd保存git提交消息?