GIT 명령( git 분기로 작동)

1971 단어 githubgit
새 분기 만들기

$ 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 명령에 더 익숙해지면 이 게시물을 업데이트하겠습니다.

내가 실수했다면 댓글을 달다

좋은 웹페이지 즐겨찾기