임시저장
git stash -m 'app.js 작업을 위한 임시 저장' git stash list
불러오기
git stash apply stash@{0} git stash drop stash@{0}
pop으로 불러오기
git stash pop