🪄충돌 해결 방법 - command line 방식(1) main 브랜치의 최신 코드를 내 로컬 main 브랜치에 가져오기 - (main)git pull origin main(2) 내가 작업 중인 feature 브랜치로 돌아오기 - (feature)git checkout -(3) main 브랜치의 내용과 내가 작업 중인 featrue 브랜치 머지하기 - (feature)git merge main(4) 충돌난 코드 해결하기 - (feature)(5) 완성된 코드 올리기 - (feature)git add . / git commit / git push(6) pr 성공!🪄Commit Convention브랜치 이름 → ex) feature/-# commit → ex) feat: - # pr title → ex)..