SVN 提交后:谁是提交的用户?

发布于 2024-10-02 23:11:37 字数 44 浏览 2 评论 0原文

在 SVN post commit hook 中,如何获取执行提交的用户?

In an SVN post commit hook, how can I get the user who executed the commit?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

少女情怀诗 2024-10-09 23:11:37

使用 svnlook 命令和 作者。例如,在 shell 脚本中,它可能是:

REPOS="$1"
REV="$2"

AUTHOR="$(svnlook author -r $REV $REPOS)"

Using the svnlook command with author. For example, in a shell script, it might be:

REPOS="$1"
REV="$2"

AUTHOR="$(svnlook author -r $REV $REPOS)"
骄兵必败 2024-10-09 23:11:37

post-commit 挂钩脚本示例:

#!/bin/sh
REPOS="$1"
REV="$2"
AUTHOR="$(svnlook author $REPOS -r $REV)"

# output on STDERR will be marshalled back to SVN client
echo "This transaction was commited by '$AUTHOR'!" 1>&2

exit 0

post-commit hook script example:

#!/bin/sh
REPOS="$1"
REV="$2"
AUTHOR="$(svnlook author $REPOS -r $REV)"

# output on STDERR will be marshalled back to SVN client
echo "This transaction was commited by '$AUTHOR'!" 1>&2

exit 0
灼疼热情 2024-10-09 23:11:37

提交后脚本的第二个参数是修订号 - 您可以使用它来查询 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文