在 eclipse 中跨提交创建 git 补丁

发布于 2024-10-17 09:22:48 字数 299 浏览 3 评论 0原文

我通过 Eclipse egit 插件使用 git。我刚开始使用 git 作为 VCS,想知道是否有一种方法可以创建一个补丁来捕获 Eclipse 内多个提交的更改。例如:

  1. 开发新功能
  2. 提交工作
  3. 修复错误
  4. 提交工作
  5. 创建自 #1 以来添加的代码补丁

这可以在 eclipse 中使用 egit 完成吗?如果没有,执行此操作的命令行是什么?

I'm using git via the Eclipse egit plugin. I am new at using git as my VCS and was wondering if there was a way to create a patch that captures the changes across multiple commits from within Eclipse. For example:

  1. Work on a new feature
  2. Commit work
  3. Fix a bug
  4. Commit work
  5. Create patch of code added since #1

Can this be done from within eclipse using egit? If not, what is the command line for doing this?

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

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

发布评论

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

评论(1

始终不够爱げ你 2024-10-24 09:22:48

您要查找的 git 命令是:

git diff HEAD~2 HEAD

HEAD 表示您当前的提交,~2 表示“之前的两次提交”。

我不确定 egit 是否可以做到这一点,但我会寻找某种任意的 diff 功能:“diff against... [commit]”。

The git command you're looking for is:

git diff HEAD~2 HEAD

HEAD means your current commit, and ~2 means "two commits before".

I'm not sure if egit can do this, but I'd look for some sort of arbitrary diff functionality: "diff against... [commit]".

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