[Git] Branch 생성, 삭제, 이동

설정·2021년 2월 25일
0

Git

목록 보기
6/9

remote

  • 연결

    $ git remote add origin [Repository URL]

원격저장소 Branch

  • git branch 삭제

    $ git push origin --delete [DeleteBranchName]

Local 저장소 Branch

  • git branch 생성

    $ git checkout -b [BranchName]

  • git branch 이동

    $ git checkout [BranchName]

  • git branch 삭제

    $ git branch -d [DeleteBranchName]

Local -> 원격저장소에 업로드

  • 내 깃허브 저장소에 업로드

    $ git push origin [BranchName] // 내 깃허브 저장소에 업로드

0개의 댓글