如果你的 GitHub 仓库上有最近的一次提交(commit),可以使用 git pull 或 git fetch 加上 git reset --hard 命令来回到该版本的代码。
假设你想回到 GitHub 上最近的一次提交(比如最新的 main 分支或其他分支的提交),你可以按照以下步骤操作:
首先,确认你当前在正确的分支上。你可以运行以下命令来查看当前所在的分支(带有 * 号的为当前分支):
git branch
确保你在正确的分支上。
使用 git pull 或 git fetch 来更新你的本地分支,确保它与 GitHub 上最新的状态保持同步。
使用 git pull:
git pull origin main
或使用 git fetch 加上 git merge:
git fetch origin main
git merge origin/main
注意:替换 main 为你想要回到的分支名称,如果是 main 分支,则直接使用 main
确保你的工作目录是干净的,没有未提交的更改。你可以通过运行 git status 来查看工作目录的状态。
git status
如果有未提交的更改,你可以使用 git stash 命令来保存这些更改。
使用 git reset --hard 来将你的本地分支回退到最近的一次提交。
git reset --hard HEAD
会看到一个提示;HEAD is now at ...
可以检查省略号应该是和gitub的hash编码相对应,这样就回到了最终的工作状态!
这将会将当前分支的 HEAD 和工作目录回退到最近的提交状态,就是 GitHub 上最近一次的提交。
现在你的本地代码应该回到了 GitHub 上最近一次提交的状态。请确保在执行 git reset --hard 之前备份你的工作,以防止数据丢失。
如果想要查看git中当前版本的code和某一个版本的code有什么区别:
首先你需要获取到你想要比较的目标代码的hash值:
git log # 查看并选择你想要定位到哪个版本的code: xxx
git diff xxx # 查看和xxx版本的code有什么差别
如果出现:divergent branches and need to specify how to reconcile them
hint: You have divergent branches and need to specify how to reconcile them.
hint: You can do so by running one of the following commands sometime before
hint: your next pull:
hint:
hint: git config pull.rebase false # merge (the default strategy)
hint: git config pull.rebase true # rebase
hint: git config pull.ff only # fast-forward only
hint:
hint: You can replace "git config" with "git config --global" to set a default
hint: preference for all repositories. You can also pass --rebase, --no-rebase,
hint: or --ff-only on the command line to override the configured default per
hint: invocation.
这个时候可以采用下面的方式:
git pull origin <branch-name> --no-rebase
或者选择rebase也可以:
git pull origin <branch-name> --rebase
然后会看到命令行进行提交merge信息:
Merge branch '<branch-name>' of <remote-url> into <branch-name>
# Please enter a commit message to explain why this merge is necessary,
# especially if it merges an updated upstream into a topic branch.
#
# Lines starting with '#' will be ignored, and an empty message aborts
# the commit.
这个时候采用command进行输入:
之后退出方法:
Ctrl+X # 完成输入
y # 确认修改退出
这个时候应该就会直接merge并且显示变化文件的结果:
respect!!!