Git:发送电子邮件而不提交

发布于 2024-11-16 19:55:00 字数 258 浏览 4 评论 0原文

我有一个项目,我在其中进行了更改,并希望使用 git send-email 功能将它们发送给另一个用户。

我发现它通过发送补丁(由每次提交的 git format-patch 创建)来工作。

它能够只发送 diff 的吗?我不想先提交,然后发送补丁。

git format-patchsend-email 是否有一些参数可以快速完成此操作?

提前致谢。

I have a project where I made changes, and want to send them to another user, using git send-email feature.

I found that it works by sending patches (created by git format-patch of each commit).

Is it able to send just diff's ? I don't want to commit first, and then send the patch.

Does git format-patch or maybe send-email have some parameter to just do that quickly?

Thanks in advance.

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

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

发布评论

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

评论(1

转身泪倾城 2024-11-23 19:55:00

事实证明这是不可能的。所以我提交并尝试send-email它,这会引发错误

命令未知:'AUTH'位于 /usr/lib/git-core/git-send-email

此错误与我的 smtp 服务器不支持身份验证有关。

为了解决这个问题,我对 .gitconfig 中显示 smtpuser, 的行进行了注释,这样它就不会向 git 传递任何用户或密码。然后,电子邮件就可以顺利发送。

但我仍然认为应该有一个使用send-email功能的选项,发送补丁而不必先提交它。

It turns out not to be possible. So I commited and tried to send-email it, which throws an error

Command unknown: 'AUTH' at /usr/lib/git-core/git-send-email

This error is related to my smtp-server not supporting authentication.

To solve this, I commented the line in my .gitconfig where it says smtpuser, so that it doesn't pass any user or password to git. Then, the email gets sent without a problem.

But I still think that should have an option to use send-email feature, sending a patch without having to commit it first.

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