git stash 사용이유
가장 최근 commit 이후로 작성된 코드를 잠시 보관하고 싶다면
git stash
- 수정된 내용 저장
- git stash or git stash save '수정 메모'
- git stash는 최근 commit 내용이 메모가 됨
** stash 목록을 보고 싶다면 git stash list
stash 불러오기
가장 최근의 stash불러오기
git stash pop
stash 지우기
특정 인덱스에 해당하는 stash 지우기
git stash drop 번호
전체삭제
git stash clear