git stash
git stash list
git stash save -a "xxxx"
git stash pop
git stash pop --index stash@{0}
git stash apply --index stash@{0}
git stash drop
git stash drop --index stash@{0}
git stash clear