文件中特定行号以下的阶段更改
Stage changes in file below a certain line number
我在一个文件中做了两组更改。
它们在概念上是不同的,所以我想将它们分开提交。
我可以在特定范围或线以上或线以下的所有内容进行更改吗 从命令行?
即类似于以下内容:
git add file -lines 124:421
您可以使用 git 添加 -p 然后 select 您希望添加的帅哥。
这些是您可以在 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
选项手动编辑它。
我在一个文件中做了两组更改。 它们在概念上是不同的,所以我想将它们分开提交。
我可以在特定范围或线以上或线以下的所有内容进行更改吗 从命令行?
即类似于以下内容:
git add file -lines 124:421
您可以使用 git 添加 -p 然后 select 您希望添加的帅哥。
这些是您可以在 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
选项手动编辑它。