Git reset 三种模式(hard,soft,mixed)

@[TOC](Git reset 三种模式(hard,soft,mixed))
git reset 三种模式分别为 : mixed(默认)、soft、hard

1.1 git log 查看想要回退到的 commit id

# 查询 commit id
git log

Git reset 三种模式(hard,soft,mixed)_第1张图片

2.1 git reset --mixed(默认)

将指定 commit id 撤回之后所有内容全部放进工作区中。
# 回退到指定 commit id 并且将回退的代码全部放入到工作区中。
git reset --mixed c983d4f8da9ab3b8db3d84d2d53e14c56047abc7
# 或
git reset c983d4f8da9ab3b8db3d84d2d53e14c56047abc7
操作如下:
1. git reset --mixed (commit id) 撤回代码
2. git status 可查看回撤到工作区的代码

在这里插入图片描述
Git reset 三种模式(hard,soft,mixed)_第2张图片

2.2 git reset --soft

将指定 commit id 撤回之后所有内容全部放进暂存区。
# 回退到指定 commit id 并且将回退的代码全部放入到暂存区中。
git reset --soft c983d4f8da9ab3b8db3d84d2d53e14c56047abc7
操作如下:
1. git reset --soft (commit id) 撤回代码
2. git status 可查看回撤到暂存区的代码

在这里插入图片描述
Git reset 三种模式(hard,soft,mixed)_第3张图片

2.3 git reset --hard

将指定 commit id 撤回并清空工作目录及暂存区所有修改。
# 回退到指定 commit id 并且清空工作目录及暂存区所有修改。
git reset --hard c983d4f8da9ab3b8db3d84d2d53e14c56047abc7
操作如下:
1. git reset --hard (commit id) 撤回代码
2. git log 可查看是否回退到了指定的 commit id
3. git status 可查本地修改代码都清空了

在这里插入图片描述
Git reset 三种模式(hard,soft,mixed)_第4张图片

你可能感兴趣的:(git,github,gitlab)