git stashgit stash save 'message' # 添加说明git stash list # 查看储藏git stash apply stash@{0} # 应用储藏git stash apply stash@{0} --index # 应用储藏被暂存起来的文件git stash pop stash@{0} # 应用指定储藏并同时移除储藏git stash drop stash@{0} # 删除指定储藏git stash clear # 删除所有储藏git stash show -p | git apply -R # 取消'应用储藏'git stash branch textstashcreatebranch # 从储藏中创建分支(同时会删除储藏)
