首页 > 其他分享 >git 回退到某个 commit 版本

git 回退到某个 commit 版本

时间:2023-03-27 18:57:32浏览次数:40  
标签:git -- 版本 回退 commit id

1 查看 commit 日志

git log

2 复制你想回退到的 commit 版本的 commit_id

3 本地回退

git reset --hard commit_id

4 同步到远程仓库(可选的,若远程仓库不想回退就不用执行该语句)

git push origin HEAD --force

标签:git,--,版本,回退,commit,id
From: https://www.cnblogs.com/angelia-wang/p/17262512.html

相关文章