English 中文(简体)
git hunk 编辑模式 - 如何删除一行?
原标题:git hunk edit mode - how to remove a - line?
  • 时间:2012-05-24 04:41:40
  •  标签:
  • git
  • patch
+ 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.

我实在不明白 让他们的行 意味着什么。 如何只应用 而不应用 - aaa ?

最佳回答

make them line 表示您需要将行前的 - 替换为 (空间)。

问题回答

像这样的帅哥:

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

将变成像这样的内容 :

bbb
ccc

要保持标记为删除的行( 以 < code> - 前缀), 请将其转换为与以上 < code> unchanged 线相同的前缀的行( 以便保持原样 ) :

+ bbb
  aaa
  ccc

当应用 hunk 时, 内容将看起来像这样 :

bbb
aaa
ccc




相关问题
git confusion - cloning a repo is returning a past version

Im having some confusion with my git usage. I cloned a repo from one comp to the other, and the new clone is the state of the original that was active some time ago. So its cloning a past version. ...

Appropriate strategy for tagging and hotfixing with git

I was wondering if the strategy I m using for tagging and hotfixing tags (which then I use for deploying rails applications) with git is appropriate. For tagging I just tag a commit of the master ...

Tips on upgrading CVS to git/hg?

We still use CVS, I use git and hg for my personal use though I m still a novice at both, but I realize they re much more modern and better, faster, distributed, etc. It s just everyone is so ...

Using Git in a TFS shop

Using Git at home has spoiled me - I now find using TFS at work to be a bit of a drag and want to explore the possibility of using Git locally and syncing somehow with TFS. I figure there are a few ...