브런치를 생성, 수정, 삭제등을 하는 명령
브런치 생성
mkdir git_branch > cd git_branch > git init > git branch developer
아직 commit이 안되서 새로운 브런치를 생성을 못하는 모양이다.
방법1: 더미파일을 만들고 commit & create branch
git init > touch .gitkeep > git add . > git status > git commit -m "initial commit" > git brabch develop
branch 리스트 조회
branch 지우기
branch 수정
수정할 브런치 생성 > 브런치 수정 > 브런치 조회