커밋하지 않은 작업 중인 변경 내용을 임시 저장
커밋하지 않은 변경 사항들이 있는 채로 checkout하면 변경 내용이 전환된 브랜치로 넘어감
작업 중인 내용과 pull 받을 내용의 변경사항의 위치가 같아 충돌이 발생하는 경우 에러를 방지
> 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