브랜치의 방법
브랜치에 대한 의사결정
-
git branch hide_follow
follow 숫자를 감추는 브랜치를 만든다. -
git branch
브랜치의 리스트를 열람한다. -
git checkout hide_follow
브랜치를 hide_follow로 변경한다. - 작업을 한다.
- git add 작업한 파일을 staged 상태로 추가
-
git commit -m '작업이력'
커밋해서 저장소에 반영
브랜치가 채택되었다.
- git checkout master
- git merge hide_follow
브랜치가 기각되었다.
-
git branch -D hide_follow
브랜치 삭제