如何从 subversion 提交后脚本运行 ssh?

发布于 2024-08-06 13:40:19 字数 142 浏览 9 评论 0原文

我们这里有一个 svn 服务器,有多个路径。

我正在寻找的(可能还不够努力)是一个提交后脚本,只要将某些内容签入特定路径,就会通过 ssh 连接到另一台服务器并运行 bash 脚本。

关于快速简便的方法或已经存在的提交后脚本有什么想法吗?

We have an svn server here with multiple paths.

What I'm looking for, and I might not have looked hard enough, is a post-commit script that, whenever something is checked into a specific path, does an ssh to another server and runs a bash script.

Any ideas on a quick and easy way to do this or a post-commit script already out there?

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

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

发布评论

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

评论(1

凑诗 2024-08-13 13:40:19
REPOS="$1"
REV="$2"

svnlook changed $REPOS -r $REV | grep "YourFilePattern" 1>/dev/null

if [ "$?" == "0" ] ; then
    ssh [email protected] foo.bash

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

svnlook changed $REPOS -r $REV | grep "YourFilePattern" 1>/dev/null

if [ "$?" == "0" ] ; then
    ssh [email protected] foo.bash

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