-
Notifications
You must be signed in to change notification settings - Fork 0
Git code pull & push
Sangwoo Jin edited this page Jul 17, 2023
·
3 revisions
깃허브는 기능 별로 브랜치를 생성합니다 . 브랜치명 예시 feature/#이슈넘버-uploadImage, GUI/#이슈넘버-uploadImage
새로운 브랜치를 파서 작업을 시작합니다.
git branch "브랜치명"
브랜치를 바꿔줍니다.
git checkout "브랜치명"
main branch에서 rebase 로 최신 코드를 받아옵니다.
git pull --rebase origin main
conflict 를 해결하고 코드를 이어 작성합니다. 작성이 완료되면 원격저장소에 추가합니다.
git add .
git commit -m "커밋메시지"
새로 작성한 브랜치를 원격저장소에 커밋합니다.
git push origin "브랜치명"
이후 깃헙 페이지에서 pull request 를 보내 Main 에 병합하는 과정을 거칩니다.