是否可以找出某个用户的电子邮件。
我试过了:
hg log --user sherman
但这只是告诉我谢尔曼所做的所有更改,而没有告诉我他的电子邮件。
最佳答案
提交时,用户可能根本没有提供电子邮件,但是如果他们这样做,可能会有所帮助,尽管它不会为单个用户提供结果。hg churn -c --template "{author|person} - {author|email}"
应该以格式列出所有作者username - email_address
它还会为您提供他们已进行的提交次数。
可以为您提供类似输出(在Powershell中)而没有churn扩展的另一种选择是:hg log --template "{author|person} - {author|email}\n" | Sort-Object -Unique
我相信Linux相当于:hg log --template "{author|person} - {author|email}\n" | sort | uniq
关于mercurial - 找出用户的电子邮件?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/54747602/