$ git branch
$ git branch -a
$ git fetch
3.브랜치 변경(checkout: 내가 사용할 브랜치를 지정)
$ git checkout 브랜치명
(ex) $ git checkout feature-sp1-home-screen
$ git add home.js
$ git add .
$ git add -p : 수정한 내용들을 볼수있음
$ git commit -m "커밋설명"
$ git push 원격저장소명 브랜치명
(ex) $ git push origin master
$ git push origin feature-sp1-home-screen
$ git pull 원격저장소명 브랜치명
(ex) $ git pull origin master
rebase, reflog도 알아두시면 좋아요