在 Git 中提交部分 Hunk

发布于 2024-10-20 10:39:18 字数 109 浏览 3 评论 0原文

如果我做了两个逻辑更改,这在代码中是连续的。 Git 将其显示为一个块,同时以交互方式添加。

有没有办法在 add --patch 期间专门在一个大块中添加几行?

If I made two logical changes, which is continuous in code. Git shows it as one single hunk while adding interactively.

Is there a way to specifically add only few lines in a hunk, during add --patch?

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

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

发布评论

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

评论(1

无尽的现实 2024-10-27 10:39:18

git add --patch 模式 具有用于拆分个人块或编辑个人块。

git add --patch< /a>:

s - split the current hunk into smaller hunks
e - manually edit the current hunk

这不会解决您关于连续行集的问题吗?

添加部分提交后,用户应该仅使用 git commit 来提交,使用 git commit -a 或使用带有 all files 标志的提交忽略添加部分并提交所有暂存文件。

The git add --patch mode has option for splitting an individual hunk or editing an individual hunk.

git add --patch:

s - split the current hunk into smaller hunks
e - manually edit the current hunk

Wouldn't that solve your issue regarding your continuous set of lines?

After adding partials to commit, User should use ONLY git commit to commit, using git commit -a or using commit with all files flag ignores added partial and commits all staged files.

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