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