커밋하지 않은 작업 중인 변경 내용을 임시 저장
커밋하지 않은 변경 사항들이 있는 채로 checkout하면 변경 내용이 전환된 브랜치로 넘어감
> git stash save
Saved working directory and index state WIP on main: acf4f76 commit-message
> git stash list
stash@{0}: WIP on main: acf4f76 commit-message
# 복구 후 보관된 정보를 바로 삭제
> git stash pop
# 복구 후 보관된 정보 남아있음
> git stash apply
> git stash drop
> git stash clear