git format-patch 无需提交

发布于 2024-12-11 04:25:40 字数 173 浏览 0 评论 0原文

如何生成 HEAD 和暂存区域之间的补丁(无需提交)?

例如

echo text > some.file
git add some.file
git format-patch (what-the-sha?)..HEAD

我必须提交然后重置吗?

How can I generate the patch between HEAD and the staging area (without committing)?

e.g.

echo text > some.file
git add some.file
git format-patch (what-the-sha?)..HEAD

Do I have to commit then reset?

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

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

发布评论

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

评论(1

骑趴 2024-12-18 04:25:40
git diff --cached

如果你只想要补丁差异,应该可以解决问题。

不过,如果您确实想要 format-patch 的所有功能,那么您确实应该提交(毕竟,如果您向上游提交补丁,则需要提交消息)。

git diff --cached

should do the trick if you just want the patch diff.

If you really want all of the functionality of format-patch, though, you really should commit (after all, you want a commit message if you're submitting a patch upstream).

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