GitHub confilct

내 프로젝트의 수정사항이 생겼을 때 push 하는 방법은 다음과 같다. 🔖 Git Branch 생성 후 push 하기 git branch 브랜치명 git checkout 브랜치명 git status로 변경사항 확인 git add . (수정 사항 전체 add) git commit -m “메세지” git log로 커밋 확인 git push origin 브랜치명 코드 업로드 및 pull request 생성 github에서 rebase&merge / merge 로컬에도 반영 : git pull origin main 원격 브랜치 확인 원격 브랜치 확인 : git branch -r 원격에 있는 브랜치로 변경 : git checkout -t origin/브랜치명 ⚠️ 문제 발생 단순하게 위의 방식으로 작업을 진행중에..
yujjne
'GitHub confilct' 태그의 글 목록