具体的git stash使用方法参考 储藏(Stashing)
http://stackoverflow.com/questions/11269256/how-to-name-and-retrieve-a-stash-by-name-in-git
For example, when saving your stash with a save name:
git stash save "guacamole sauce WIP"
… you can use a regular expression to address that stash:
git stash apply stash^{/guacamo}
list all the stash:
git stash list