我可以按日期列出git的库存
git stash list --date=local
但我如何选择一个修订版而不获得
fatal: Needed a single revision
你需要在日期前后加上引号:
git stash show -p stash@{Friday Smarch 13 13:13:13 2013}
不起作用,而
git stash show -p stash@{"Friday Smarch 13 13:13:13 2013"}