如何使用 blat 在电子邮件中发送提交修订版本的输出?

发布于 2024-08-13 01:04:14 字数 415 浏览 6 评论 0原文

一旦 svn 提交成功,我就会发送一封电子邮件。

现在我想在电子邮件中发送提交的修订号(svn status -u 的输出)。

我正在使用 bla 在批处理文件中发送电子邮件。

blat - -body "Subversion Commit successful. Log file: \\%computername%%OUTPUT_FILE%" -subject "Successful - SVN Commit'" -to [email protected].

请告诉我如何通过电子邮件发送承诺的修订号。

I am sending an email once the svn commit is successful.

Now I want to send the committed revision number (output of svn status -u) also in the email.

I am using the blat to send an email in a batch file.

blat - -body "Subversion Commit successful. Log file: \\%computername%%OUTPUT_FILE%" -subject "Successful - SVN Commit'" -to [email protected].

Please do let me know how can I send an committed revision number in an email.

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

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

发布评论

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

评论(1

青柠芒果 2024-08-20 01:04:14

您必须在存储库挂钩目录中使用提交后脚本:

只需在其中放置一个 post-commit.bat 文件,然后输入 blat 命令。注意:您必须使用所有可执行文件的完整路径名,因为您的 PATH 环境为空。

Subversion 将在每次提交后调用您的脚本并传递 2 个参数:

  • 存储库的路径为 %1%
  • 提交的修订号为 %2%

You have to use the post-commit script in your repositories hook directory:

just place a post-commit.bat file there, and put in your blat command. Note: You have to use full pathnames to all execuables, as your PATH environment is empty.

Subversion will call your script after each commit and passes 2 arguments:

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