반응형
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
반응형
'Programing' 카테고리의 다른 글
텍스트에 숨겨진 문자 바꾸기 (0) | 2020.12.30 |
---|---|
네이티브가 아닌 바이너리의 라이브러리 종속성을 나열하는 방법은 무엇입니까? (0) | 2020.12.30 |
C ++ 11 std :: to_string (double)-후행 0 없음 (0) | 2020.12.30 |
방랑 할 수 없음- "공급자"설정 방법 (0) | 2020.12.30 |
람다에 사용할 수있는 NOP (no-op)에 대한 메서드 참조가 있습니까? (0) | 2020.12.30 |