SVN 提交后:谁是提交的用户?
在 SVN post commit hook 中,如何获取执行提交的用户?
In an SVN post commit hook, how can I get the user who executed the commit?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
在 SVN post commit hook 中,如何获取执行提交的用户?
In an SVN post commit hook, how can I get the user who executed the commit?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
使用
svnlook
命令和作者
。例如,在 shell 脚本中,它可能是:Using the
svnlook
command withauthor
. For example, in a shell script, it might be:post-commit
挂钩脚本示例:post-commit
hook script example:提交后脚本的第二个参数是修订号 - 您可以使用它来查询 SVN 以获取所需的任何信息。
The second parameter to your post-commit script will be the revision number - you can use this to query SVN for whatever information you need.