https://learngitbranching.js.org/?locale=ko
1. 실습
git branch bugFix
git checkout bugFix
git commit
git checkout main
git commit
git merge bugFix
2. 코드 설명
2-1 git branch 브랜치명 - 브랜치 생성하기
git branch bugFix
2-2 git checkout 브랜치명 - 브랜치 이동
git checkout bugFix
2-3 git commit - 커밋
git commit
2-4 git merge 브랜치명 - 현재 브랜치와 명령문에 적은 브랜치 합치기
git merge bugFix
'개발ING > Git' 카테고리의 다른 글
[GitLab] gitlab repository remove 깃랩 리포지토리 삭제 (0) | 2024.04.18 |
---|---|
[Git] 커밋 되돌리기(푸쉬 전 일 때) 한 문장으로 끝남 (0) | 2023.11.08 |
[Git] git revert error (0) | 2022.08.23 |
[GitLab] gitlab과 vscode 연동(+clone) (0) | 2022.08.11 |
[Github Desktop] ERROR - warning: LF will be replaced by CRLF (0) | 2022.04.04 |