📜  如何撤消 git 中修改的文件 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:51:29.814000             🧑  作者: Mango

代码示例1
# If you want to revert the changes only in current working directory
git checkout -- .

# discard anything (note: you have to be in the directory
# where all of the changes are located)
# or you can use the command on line 9, you can discard anything
# on the repo
git checkout -- *
git checkout -- :/

# or if you check the git status message after modifying a file 
# there is this command 
git restore