Best way to debug git

What is the best way to debug git-hooks?

The way I prefer is adding statements to add output to a log file. For example, the following.

echo 'post-receive executed' >> hooks.log

Is there a better approach or way to do logging?


This is an old question, but for future readers, one recommendation would be :

Debugging the hook as a shell script

I doubt that it is the script itself which needs to be looked at, however if that turns out to be the case, then the next step is to do what you normally would to debug shell scripts (since that is what the default commit-msg hook is).

I would start by changing the she-bang line from #!/bin/sh to #!/bin/sh -xv and then revel in the uber-verbose output as the script is executed when you do a git commit --amend

链接地址: http://www.djcxy.com/p/27282.html

上一篇: 有“缺少”参数的“[”的S4文档

下一篇: 调试git的最佳方法