Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
决定 git difftool 上下文的 diff.tool git config key 的等价物是什么?我已将我的 difftool 设置为 vimdiff。
Vim 的 diff 上下文可以通过diffopt. 这是一个 Vim 选项,而不是一个 git 选项,所以它必须在你的.vimrc. 例如:
diffopt
.vimrc
set diffopt+=context:2
注意+=应该使用,而不是=因为diffopt是一个列表。
+=
=
有关:help diffopt更多信息,请参阅。
:help diffopt