ここでgit
説明する方法を使用して、コミットデータをLaTexドキュメントに含める方法を実装しようとしています。
フックは次のようになります。
$ cat post-commit
#!/bin/sh
cd ../..
git log -1 --format="format:\
\\gdef\\GITAbrHash{%h}\
\\gdef\\GITHash{%H}\
\\gdef\\GITAuthorDate{%ad}\
\\gdef\\GITAuthorName{%an}" >> git.tex
そうするとchmod a+x post-commit
、./post-commit
ファイルが適切に生成されます。しかし、実際にコミットすると、フックは実行されません。何が問題なのですか?