【如果你的 GitHub 仓库上有最近的一次提交(commit),可以使用 git pull 或 git fetch 加上 git reset --hard 命令来回到该版本的代码】

本文介绍了如何通过git命令行工具回到GitHub仓库的最新提交状态。首先,需要确认在正确分支,然后使用gitpull或gitfetch加gitmerge同步远程仓库。接着,使用gitreset--hardHEAD命令回退到最近的提交。如果遇到分叉的分支,可以选择使用--no-rebase或--rebase选项进行合并。整个过程需确保工作目录干净,并注意备份,以防数据丢失。
摘要由CSDN通过智能技术生成

如果你的 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!!!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Daniel_Smith

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值