프론트앤드/이것저것

[Git branch]

헬리이 2023. 2. 23. 15:05
728x90

Please enter a commit message to explain why this merge is necessary, especially if it merges an updated upstream into a topic branch 해결하기

 

 

git 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

이런식으로 나오고 키보드 누르더라도 아무것도 안눌린다..

 

 

 

 

이때!! 해결할 수 있는 방법!

 

 

1. i를 누른다. ( commit message를 입력하기 위해 #으로 시작)

2. merge에 대한 commit message 를 남긴다.

3. esc를 누른다.

4. : wq를 입력하고 엔터!

 

 

 

 

 

그러면 Merge 성 공 !

 

 


추가로 

 

remote 한 repository에 잘 push되고 있는지 확인하려면

직접 홈페이지 가서 pull request 를 확인하는 방법도 있겠지만,

 

 

git remote -v

를 이용하여 현재 어느 repository에서 작업 중인지 확인 가능 !

728x90

'프론트앤드 > 이것저것' 카테고리의 다른 글

웹 성능 최적화  (0) 2023.07.18
JWT(JSON Web Token)  (0) 2023.07.18
세션과 쿠키를 이용한 인증 flow  (0) 2023.07.18
[2차 프로젝트] small box read me + 회고록  (0) 2023.04.08
[1차 프로젝트 회고]  (0) 2023.02.20