Skip to content

2. branch 파서 작업하기

Juyeong Lee edited this page Sep 11, 2020 · 3 revisions

작업할 땐 master branch 말고 새로운 branch에서 작업하기!

  1. 새로운 branch 생성하는 방법
$ git branch [브랜치 이름]
  1. 다른 branch로 이동하기
$ git checkout [브랜치 이름]

예를 들어, develop이라는 이름의 branch를 새로 만들기 위해서는

$ git branch develop

develop branch로 이동하려면

$ git checkout develop

다시 master branch로 이동하려면

$ git checkout master

💡 Tip) 새로운 branch 생성한 후 해당 branch로 이동하기
1+2의 작업을 한번에 하는 것이라고 생각하면 됨

$ git checkout -b [브랜치 이름]