GIT 명령( git 분기로 작동)
$ git checkout -b YOUR_NEW_BRANCH_NAME
모든 지역 지점 보기
$ git branch
모든 로컬 및 원격 지점 보기
$ git branch -a
로컬 브랜치를 원격 서버로 푸시
$ git push origin YOUR_BRANCH_NAME
업스트림 분기 설정
upsteam allows to use "git push" command
$ git push -u origin BRANCH_NAME
분기 간 전환
$ git checkout BRANCH_NAME
분기 병합
make sure you have committed all changes before merging
// first switch to destination branch, where branch needs to be merged
$ git checkout DESTINATION_BRANCH_NAME
// and run below command to merge
$ git merge BRANCH_NAME_TO_BE_MERGED
병합하지 않고 로컬 브랜치 삭제
// switch to any other branch
$ git branch -D BRANCH_NAME
병합 후 로컬 브랜치 삭제
make sure you need to be in the destination branch to delete merged branch
$ git branch -d BRANCH_NAME
원격 서버에서 분기 삭제
$ git push origin -d BRANCH_NAME
원격 분기 당기기
$ git pull origin BRANCH_NAME
마스터 브랜치에서 다른 브랜치로 변경 사항 가져오기
// switch to branch
$ git checkout DESTINATION_BRANCH_NAME
$ git rebase master
참고: git 분기에서 작업하는 동안 다른 git 명령에 더 익숙해지면 이 게시물을 업데이트하겠습니다.
내가 실수했다면 댓글을 달다
Reference
이 문제에 관하여(GIT 명령( git 분기로 작동)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/milantarami/git-commands-woking-with-branch-3lck텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)