[Git] Git 특정 Branch Pull 하기


[Git] Git 특정 Branch Pull 하기

Git을 이용하여 프로젝트 관리시 Master가 아닌 Develop으로 생성하여 개발 후 Test 를 위해 Git Pull이 필요한 경우가 있다. Develop과 같이 특정 Branch(브랜치)를 Pull 하는 방법을 알아보도록 하자. $ git pull origin # git pull origin $ git pull origin develop Cloning into 'test'... Username for 'https://github.com': xxxxx Password for 'https://[email protected]': remote: Enumerating objects: 7, done. remote: Counting objects: 100% (7/7), done. remote: Compressi..


원문링크 : [Git] Git 특정 Branch Pull 하기