74
+ bbb
- aaa

# ---
# To remove '-' lines, make them ' ' lines (context).
# To remove '+' lines, delete them.
# Lines starting with # will be removed.
#
# If the patch applies cleanly, the edited hunk will immediately be
# marked for staging. If it does not apply cleanly, you will be given
# an opportunity to edit again. If all lines of the hunk are removed,
# then the edit is aborted and the hunk is left unchanged.

ただmake them ' ' lines意味がわかりません。+ bbbのみを適用する方法は- aaa?

4

2 に答える 2

120

make them ' ' lines-行の前を(スペース)に置き換える必要があることを意味します。

于 2012-05-24T04:42:53.283 に答える
24

このようなハンク:

+ bbb <-- line added
- aaa <-- line deleted
  ccc <-- line unchanged

次のような内容になります。

bbb
ccc

削除対象としてマークされた行 (接頭辞が'-') を保持するには、上記の行と同じ接頭辞を持つ行に変更しunchangedます (同じままになります)。

+ bbb
  aaa
  ccc

ハンクが適用されると、内容は次のようになります。

bbb
aaa
ccc
于 2012-05-24T05:19:42.383 に答える