checkout 撤销修改_8.Git撤销修改

有一个文件内容如下:

$ cat README.md

the first ...

the second ...

the third ...

- 文件自修改后还没有被放到暂存区,现在,撤销修改就回到和版本库一模一样的状态.

1.删除最后一行内容:`the third ...`

$ vi README.md

$ cat README.md

the first ...

the second ...

2.执行命令`git status`

$ git status

On branch dev

Changes not staged for commit:

(use "git add ..." to update what will be committed)

(use "git checkout -- ..." to discard changes in working directory)

modified: README.md

no changes added to commit (use "git add" and/or "git commit -a")

3.通过上面结果,可以发现,Git会告诉我们,git checkout -- file可以丢弃工作区的修改

$ git checkout -- README.md

4.执行命令`README.md`查看恢复后文件内容

$ cat README.md

the first ...

the second ...

the third ...

- 文件已经添加到暂存区后,又作了修改,现在,撤销修改就回到添加到暂存区后的状态.

1.删除最后一行内容:`the third ...`

$ vi README.md

$ cat README.md

the first ...

the second ...

2.执行命令`git add`添加到缓存区

$ git add README.md

3.执行命令`git status`

$ git status

On branch dev

Changes to be committed:

(use "git reset HEAD ..." to unstage)

modified: README.md

4.执行命令`git reset HEAD README.md`

$ git reset HEAD README.md

Unstaged changes after reset:

M README.md

5.执行命令`git status`

$ git status

On branch dev

Changes not staged for commit:

(use "git add ..." to update what will be committed)

(use "git checkout -- ..." to discard changes in working directory)

modified: README.md

no changes added to commit (use "git add" and/or "git commit -a")

6.通过上面结果,可以发现,Git会告诉我们,git checkout -- file可以丢弃工作区的修改

$ git checkout -- README.md

7.执行命令`cat README.md`查看恢复后文件内容

$ cat README.md

the first ...

the second ...

the third ...

总结:

git checkout -- file命令中的--很重要,没有--,就变成了“切换到另一个分支”的命令,我们在后面的分支管理中会再次遇到git checkout命令.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值