hooks 的 python 代码放在哪里
我创建了一个 python 脚本,我想要一个 Mercurial hook 来调用,但我无法弄清楚工作目录(或从哪里开始脚本的路径)应该来自哪里。
我知道这可能是不对的,但我需要一种方法来设置一个钩子,比如...... changegroup=python:e:\www\hg\hooks\teamTrack.py:associate
提前致谢。
I have created a python script I want a mercurial hook to call but what I cant figure out is where the working directory (or where to start the path to the script) should be from.
I know this probably isnt right but I need a way to set a hook like...
changegroup=python:e:\www\hg\hooks\teamTrack.py:associate
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果将 python 文件放在 python 路径中,则可以通过名称引用它,而无需在 hgrc 中添加路径。
if you put the python file in your python path you can reference it by name without a path in the hgrc.