origin/develop을 바라보는 feature 브랜치를 생성하는 명령어이다.
git checkout -b local-branch-name —track origin/develop
local-branch-name에 내가 만든 feature 브랜치 이름을 넣어준다.
그러면
branch 'feature/support-for-merge' set up to track 'origin/develop'.
새로 만든 'feature/support-for-merge' 브랜치로 전환합니다 라는 문구가 뜬다.
* git log를 통해 해당 브랜치가 origin/develop을 잘 바라보고 있는지 확인 필요
(HEAD -> feature/support-for-merge, origin/develop)
'git' 카테고리의 다른 글
You have not concluded your merge (MERGE_HEAD exists) (0) | 2024.01.12 |
---|---|
브랜치 이름 변경하기 (0) | 2024.01.08 |
git 병합 중단 방법(커밋 날리지 않았을 때) (0) | 2023.12.11 |
Error: Your application tried to access @eslint/eslintrc, but it isn't declared in your dependencies; this makes the require call ambiguous and unsound. (1) | 2023.12.06 |
fatal: (현재 폴더 또는 상위 폴더 중 일부가) 깃 저장소가 아닙니다: .git (2) | 2023.12.05 |