Git 电子邮件挂钩包含提交消息和更改的文件

发布于 2024-10-07 13:33:46 字数 843 浏览 5 评论 0原文

我在heroku 中为git 设置了电子邮件挂钩。但是,我得到的只是推送某些内容的消息 - 我需要提交消息和修改后的文件。

#what i now get in the email:
[email protected] to me, hermantamas

[email protected] deployed app

#what i need:
[email protected] to me, hermantamas

[email protected] deployed app:

"home page is now working"
Changed:
- index.html
- javascript.js

I set up the email hook for git in heroku. However, all i get is the message that something is pushed - i need both the commit message and the modified files.

#what i now get in the email:
[email protected] to me, hermantamas

[email protected] deployed app

#what i need:
[email protected] to me, hermantamas

[email protected] deployed app:

"home page is now working"
Changed:
- index.html
- javascript.js

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

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

发布评论

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

评论(1

平安喜乐 2024-10-14 13:33:46

这意味着直接修改 Heorku 电子邮件挂钩 来添加一些 那些 git 日志选项 (git log - -name-statusgit log --name-onlygit log --statgit Whatchanged

但是既然你可能无法直接更改钩子脚本,您仍然可以添加一个 Heroku 变量< /a> 定义邮件钩子时。

git_log:本次部署与上次部署之间的提交日志

$ heroku addons:add deployhooks:email \
    [email protected] \
    subject="Myapp Deployed" \
    body="{{user}} deployed app: {{git_log}}"
Adding deployhooks:email to myapp...Done.

That would mean modifying the Heorku email hook directly to add some of those git log options (git log --name-status, git log --name-only, git log --stat or git whatchanged)

But since you may not have the possibility to change directly the hook script, you still can add one Heroku variable when defining said mail hook.

git_log: log of commits between this deploy and the last

$ heroku addons:add deployhooks:email \
    [email protected] \
    subject="Myapp Deployed" \
    body="{{user}} deployed app: {{git_log}}"
Adding deployhooks:email to myapp...Done.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文