Programing

git hunk 편집 모드- '-'줄을 제거하는 방법?

crosscheck 2020. 12. 30. 19:00
반응형

git hunk 편집 모드- '-'줄을 제거하는 방법?


+ 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?


make them ' ' lines-줄 앞을 (공백) 으로 바꿔야 함을 의미합니다 .


다음과 같은 덩어리 :

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

다음과 같은 내용으로 바뀝니다.

bbb
ccc

삭제 표시가 된 줄 (접두사 '-') 을 유지하려면 위 줄과 같은 접두사를 가진 줄로 바꾸십시오 unchanged(그러면 동일하게 유지됩니다).

+ bbb
  aaa
  ccc

덩어리가 적용되면 내용은 다음과 같습니다.

bbb
aaa
ccc

참조 URL : https://stackoverflow.com/questions/10731269/git-hunk-edit-mode-how-to-remove-a-line

반응형