0

我熟悉使用https://github.com/jonas/tig来查看我的更改,但我经常想查看整个文件并快速浏览更改。tig我认为在判断我的这些错误报告时不存在这个“git timemachine”功能:

我的解决方法是使用tig blame $filename并点击f查看该版本中的 blob,这非常尴尬,因为不同的行在不同的时间改变。

我错过了什么?

4

1 回答 1

2

也许这个绑定:

bind generic V !sh -c 'git show $1:$2' -- %(commit) %(fileargs)

然后运行类似tig -- README.adoc. 选择一个提交并点击“V”来查看文件。

于 2021-11-27T16:26:22.713 回答