0

我在一个文件中做了两组更改。它们在概念上是不同的,所以我想把它们放在单独的提交中。

我可以在命令行中将更改暂存某个范围内某行上方或下方的所有内容吗?

即类似于以下内容:

git add file -lines 124:421
4

1 回答 1

1

您可以使用 git add -p 然后选择要添加的块。

这些是您可以在其中执行的选项add -p

y - stage this hunk
n - do not stage this hunk
q - quit, do not stage this hunk nor any of the remaining ones
a - stage this and all the remaining hunks in the file
d - do not stage this hunk nor any of the remaining hunks in the file
g - select a hunk to go to
/ - search for a hunk matching the given regex
j - leave this hunk undecided, see next undecided hunk
J - leave this hunk undecided, see next hunk
k - leave this hunk undecided, see previous undecided hunk
K - leave this hunk undecided, see previous hunk
s - split the current hunk into smaller hunks
e - manually edit the current hunk
? - print help

一旦你使用s它,它将选择可以被视为独立更改的代码块。如果您想进一步拆分它,则必须使用e编辑大块然后将其添加回舞台区域。

概括:

要拆分帅哥,您可以使用s标志。
如果您需要将其拆分为更小的块,则需要使用该e选项手动编辑它。

在此处输入图像描述

于 2020-02-19T15:48:59.090 回答