-
Notifications
You must be signed in to change notification settings - Fork 4
2. branch 파서 작업하기
leechaelim edited this page May 11, 2021
·
5 revisions
작업할 땐 main
branch 말고 새로운 branch에서 작업하기!
- 새로운 branch 생성하는 방법
$ git branch [브랜치 이름]
- 다른 branch로 이동하기
$ git checkout [브랜치 이름]
예를 들어, develop
이라는 이름의 branch를 새로 만들기 위해서는
$ git branch develop
develop
branch로 이동하려면
$ git checkout develop
다시 main
branch로 이동하려면
$ git checkout main
💡 Tip) 새로운 branch 생성한 후 해당 branch로 이동하기
1+2의 작업을 한번에 하는 것이라고 생각하면 됨
$ git checkout -b [브랜치 이름]
💡 branch name 규칙
기능 요약
- branch 삭제
git branch -d [브랜치 이름]
- 현재 branch 확인
$ git branch