oris9
[Git] Please enter a commit message to explain why this merge is necessary, especially if it merges an updated upstream into a topic branch 본문
Git
[Git] Please enter a commit message to explain why this merge is necessary, especially if it merges an updated upstream into a topic branch
oris9 2024. 3. 4. 07:53
merge를 진행하려고 할 때 아래처럼 왜 해당 merge가 필요한지에 대해서 commit message를 남기라는 말이 나온다.
Please enter a commit message to explain why this merge is necessary, especially if it merges an updated upstream into a topic branch
이때, 커밋 메세지를 입력해주고 merge를 진행해야하는데
그냥 입력하면 안되고, 터미널에서 문서를 작성하듯이 입력해야한다.
그냥 키보드를 두드리면 아무 반응 없음!
해결 방법
- i를 누른다 (commit message를 입력하기 위해)
- merge에 대한 message를 입력한다.
- esc를 누른다.
- :wq를 입력한다.
- enter를 누른다.
참고
'Git' 카테고리의 다른 글
[Git] merge 외의 branch를 합치는 또 다른 방법 Rebase와 Squash (0) | 2024.03.20 |
---|---|
[Git] 좋은 commit 작성과 commit관련 명령어들 (0) | 2024.03.20 |
[Git] ISSUES, PR(pull request)에 대해 알아보기 (0) | 2024.03.07 |
[Git] Git flow? Github flow? (1) | 2024.03.06 |
[Git] Github 명령어 정리 (2) | 2024.03.05 |