git checkout 명령어 썸네일형 리스트형 [리눅스] git branch 명령어 git branch 명령어 현재 작업 중인 브랜치 확인 git branch $ git branch * main 브랜치 생성하기 git branch develop $ git branch * main develop 브랜치 전환하기 (main -> develop) git checkout develop $ git checkout develop branch 'develop' set up to track 'origin/develop'. Switched to a new branch 'develop' $ git branch * develop main test1 브랜치 생성 git branch test1 브랜치 삭제 git branch -d test1 $ git branch -d test1 Deleted branch t.. 더보기 이전 1 다음