git 回滚至指定分支
git回滚有两种方式,reset和revert
git reset --hard commitID
会强制删除commit之前的提交
git revert --hard commitID
会通过一个新的commit回退至指定提交
本文来自博客园,作者:两小无猜,转载请注明原文链接:https://www.cnblogs.com/charlottepl/p/16477667.html
git回滚有两种方式,reset和revert
git reset --hard commitID
会强制删除commit之前的提交
git revert --hard commitID
会通过一个新的commit回退至指定提交
本文来自博客园,作者:两小无猜,转载请注明原文链接:https://www.cnblogs.com/charlottepl/p/16477667.html