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 diff fatal: cannot exec '/Users/john/git-diff-cmd.sh': Permission denied external diff died, stopping at footer.php.
これは明らかに望ましくありません!! どうすれば修正できますか、また Filemerge と GIT をうまく動作させるにはどうすればよいですか?
スクリプトは実行可能でなければなりません:
chmod u+x '/Users/john/git-diff-cmd.sh'
スクリプト ファイルの実行権限がないようです。ターミナルに移動して入力します
chmod a+x /Users/john/git-diff-cmd.sh
もう一度 git を実行してみてください。