Stash
- A브랜치에서 작업하다가 B브랜치에 작업할 것이 있는데 내가 지금까지 A브랜치에 작업한거 버릴 수는 없고 어떻게하지?
-> stash로 지금까지 하던일 킵해놓기
git stash
git stash save 저장할_이름
git stash list : stash 리스트 확인
git stash pop : 가장 최근에 stash한 것을 꺼내오기
git stash apply : pop하지만 list에서 삭제 x
Branch
- Branch생성과 checkout 동시에 하기
git checkout -b 생성할_브랜치명