git reset –hard commitID(可以不完整)
- 作用:回到commitID相应版本
- commitID的查看有两种
- git log
- git reflog:在reset之后log已经看不到commitID对应的版本信息了,但是reflog可以看到每一条命令,相应的commitID
添加到远程仓库
- git remote add origin https://github.com/youname/learngit.git
- git push -u origin master
- git push -u origin master
Git回退版本
最新推荐文章于 2024-09-30 11:32:35 发布