我有一个 git 钩子,“commit-msg”
它看起来像:
#!/bin/sh
python .git/hooks/Foo.py
在我的 Foo.py 里面
我有:
import git
# doing some stuff based on git (evaluating latest changes)
当我使用 sourcetree 提交时,如果无法运行钩子(它也不提交)
//...
Traceback (most recent call last):
File ".git/hooks/Foo.py", line 2, in <module>
import git
ImportError: No module named git
//...
但如果我直接从终端提交,则挂钩按预期工作。
有什么建议可以修复源树上的提交吗?
慕的地6264312
相关分类