[Git] Branch 관련 명령어

  • 브랜치 생성

    1
    git checkout -b <브랜치 이름>
  • 다른 브랜치로 전환

    1
    git checkout <브랜치 이름>
  • 원본 브랜치 (master 브랜치)로 전환

    1
    git checkout master
  • 브랜치에 push 하기

    1
    2
    3
    git add .
    git commit -m "커밋 내용"
    git push origin <브랜치 이름>
  • 특정 브랜치 소스코드 Clone 받기

    1
    git clone -b <브랜치 이름> --single-branch <리포지토리 주소>
  • 원격(remote) 브랜치 삭제하기

    1
    git push origin --delete <브랜치 이름>
  • 내 로컬 저장소(내 컴퓨터)에서 개발 중인 로컬 브랜치 삭제하기

    1
    git branch -d "브랜치 이름"
Author

MoonDoni

Posted on

2020-07-30

Updated on

2020-07-30

Licensed under

댓글