본문 바로가기
Git

Git Beginner를 위한 branch 심플 명령어

by Gil Granger 2019. 7. 9.
  • 생성 :

    • git branch [브랜치명]

  • 이동 :
    • git checkout  [브랜치명]
  • 생성 후 이동 :

    • git checkout -b [브랜치명]

 

  • Git remote branch 생성

    • git push origin feature-example

 

  • branch local remote 연동

    • git branch --set-upstream-to origin/feature-example

댓글