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