git 实践命令汇总
stash
获取 stash 列表
git stash list
清除 stash
git stash clear
checkout
以某个commit为基础创建分支
git checkout [commitId] -b [newBranchName]
git 实践命令汇总
获取 stash 列表
git stash list
清除 stash
git stash clear
以某个commit为基础创建分支
git checkout [commitId] -b [newBranchName]
转载于:https://my.oschina.net/mengzhang6/blog/2990820