git diff 視覺化配置

Anonymous596發表於2024-07-03

here assume you diff with `tkdiff`, of course you can use other diff tools such as `meld` or whatever,

$ git config --global diff.tool tkdiff
$ git config --global difftool.prompt false
$ git config --global alias.df difftool

then you can diff with cmd,

$ git df

Over.

相關文章