我创建了一个powershell脚本作为提交钩子(Hook)运行,以将用户名写入文件。我在powershell中用于提取用户名的命令是:

$repodir = "C:\Users\Administrator\Documents\Visual Studio 2012\Projects\testRepo"
cd $repodir
$hguser = hg --cwd $repodir tip | grep user

其中$ repodir是存储库的目录。当我从powershell命令行提交时,挂钩执行所需的提取用户名。当我在tortoisehg工作台中提交时,挂钩执行(我可以在输出文件中看到更改),但是$ hguser中没有信息,其他hg命令也没有影响。从tortoisehg内部执行hg是否需要特殊的语法,它是否在正确的路径中执行?

最佳答案

它似乎为我工作。

.hg / hgrc

[hooks]
commit = powershell.exe -File "C:\users\andy\desktop\test\test.ps1"

test.ps1
$repodir = "C:\Users\andy\Desktop\Test"
cd $repodir
$hguser = (hg tip) | ? {$_ -match '^user:\s+([\w\s]+\w)'} | % {$matches[1]}
$hguser | Out-File user.txt -Encoding ASCII

通过TortoiseHg / hg.exe提交填充user.txt。使用TortoiseHg 2.7。

08-27 20:43