login_develop브랜치에서 작업한 걸 main브랜치에 merge 후 push 한다.
git clone 주소
git branch login_develop( 작업할 브랜치명)
git status
작업
git status
git add .
git status
git commit -m "feat:기능수정"
git status
git checkout main(위에서작업한 브랜치를 합칠 브랜치)
git status
git merge login_develop(작업한 브랜치명)
git satus
git push
[참고]
git status로 상태 체크 습관을 들이자.
git log --graph로도 봐보자.
결과 해석하는 거 기록하자.
'개발환경, 도구 > Git' 카테고리의 다른 글
20220629-[git]git stash 특정 파일 (0) | 2022.06.29 |
---|---|
20220608_git - 수정하지 않은 부분도 수정했다고 나오는 현상 (0) | 2022.06.08 |
20200603_gitlab - upstream (1) | 2022.06.03 |
20220506_git stash (0) | 2022.05.06 |
20220504_원격저장소(github)에 node_modules 폴더 올렸을 때 삭제 방법 (0) | 2022.05.04 |