git切换分支代码到某一次commit提交
当前分支切换到某一次提交:
git chekcout <commit_id>
切换到某一次commit提交,并以那次commit提交新建一个分支:
git branch <new-branch-name> <commit_id>
放弃所有代码文件修改:
git checkout .
git reset撤销当前分支所有修改,恢复到最近一次修改前干净的分支情况_zhangphil的博客-CSDN博客git reset撤销当前分支所有修改,恢复到最近一次修改前干净的分支情况,首先:git reset --hard接着:git clean -fdhttps://blog.csdn.net/zhangphil/article/details/90270695git回退代码仓库版本_git回退到之前的版本会影响本地代码嘛_zhangphil的博客-CSDN博客git回退代码版本_git回退到之前的版本会影响本地代码嘛https://blog.csdn.net/zhangphil/article/details/125624513
git代码回滚_zhangphil的博客-CSDN博客git代码回滚到历史上的某一次提交。git命令:git reset --hard <commit-id>commit-id可以通过git log输出查找。然后强制推送到远程:git push --forcehttps://blog.csdn.net/zhangphil/article/details/80234273