2

diffmergeデフォルトの Unix ではなく、デフォルトの diff エディターとして使用するように git を設定したかったのdiffです。

git config --global diff.external diffmerge

残念ながら、私がやったとき

git diff myfile.txt

DiffMerge から (ポップアップの形式で) 次のエラーが発生しました。

Unexpected parameter '100644'

Command Line Arguments:
[0]: /Applications/DiffMerge.app/Contents/MacOS/DiffMerge
[1]: --nosplash
[2]: myfile.txt
[3]: /var/folders/_r/xjwgmj811yq5x7n7mb9z0pzc0000gn/T//pNIOTmyfile.txt
[4]: 95cbe334d3ec607ca7f7bd3fd16d630271e9d0af
[5]: 100644
[6]: myfile.txt
[7]: 0000000000000000000000000000000000000000
[8]: 100644

私が間違っていることを教えてもらえますか?

4

1 に答える 1

1

代わりにこれを使用してください

git config --global diff.tool diffmerge
git config --global difftool.diffmerge.cmd "diffmerge \$LOCAL \$REMOTE"

diffmerge をデフォルトの diff またはマージ ツールとして設定する方法を説明するブログ投稿や記事がたくさんあります。たとえば、http://adventuresincoding.com/2010/04/how-to-setup-git-to-use-diffmerge/を参照してください。

于 2014-02-04T18:55:21.563 に答える