text Git会丢弃您未在本地按命令上演的更改

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text Git会丢弃您未在本地按命令上演的更改相关的知识,希望对你有一定的参考价值。

# check status
> git status
Changes not staged for commit:
  (use "git add <file>..." to update what will be committed)
  (use "git checkout -- <file>..." to discard changes in working directory)
  modified: hello.html
  
# discard changes
> git checkout hello.html

# check status
> git status

以上是关于text Git会丢弃您未在本地按命令上演的更改的主要内容,如果未能解决你的问题,请参考以下文章

常用git命令

git 丢弃本地代码时遇到的问题

如何在使用 Git 和命令行进行合并时保留本地文件或远程文件?

丢弃Git中的本地提交

git基础命令

如何撤消 git 上的丢弃更改?