[Git Error] Can’t automatically merge. Don’t worry, you can still create the pull request. 해결 방법
2023. 4. 4. 22:28
형상관리/Git
발생 원인 작업하는 동안 다른 변경사항이 생겼는데 pull 받지 않고 push 한 경우 발생 나의 경우 dev에서 브랜치 따서 하던 작업을 push 하니 다른 팀원이 변경한 파일과 충돌이 났음 해결 방법 해당 브랜치에서 충돌 해결 후 push 1. remote branch merge 하기 git merge remote_branch # 예시 git merge dev 2. 충돌 해결 충돌난 파일 찾아서 충돌 해결하기 3. 변경한 파일 add git add 변경한 파일 # 예시 git add src/main/java/com/…/Sample.java 4. commit message 작성 git commit -m “충돌 해결” 5. push 하기 git push origin branch_name # 예시 git ..