* git 초기화
git init
* git 브랜치 생성
git branch feature/test
* git 브랜치 변경
git checkout feature/test
* git 커밋
git add .
git commit -m "커밋메세지"
* git develop 브랜치 변경
git checkout develop
* git 브랜치 merge 후 push
git merge feature/test
git push
* git 브랜치 삭제
git branch -d feature/test
'gitlab' 카테고리의 다른 글
Default branch master로 변경 (0) | 2023.08.16 |
---|---|
브랜치(branch) 사용 (0) | 2023.03.27 |
git stash 임시 저장(git stash) / pop, drop (0) | 2022.04.21 |
git remote 저장소 확인 & 변경 (0) | 2021.11.11 |