How To Revert Uncommitted Changes Including Files And Folders

[Solved] How To Revert Uncommitted Changes Including Files And Folders | Shell - Code Explorer | yomemimo.com
Question : How to revert uncommitted changes including files and folders?

Answered by : daniel-hemmati

# 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 <file>

Source : https://stackoverflow.com/questions/5807137/how-to-revert-uncommitted-changes-including-files-and-folders | Last Update : Tue, 31 Mar 20

Question : revert uncommitted changes to a single file

Answered by : delightful-donkey-2dajuwgzgt0p

git checkout HEAD -- my-file.txt

Source : https://stackoverflow.com/questions/7147270/hard-reset-of-a-single-file | Last Update : Mon, 25 May 20

Answers related to how to revert uncommitted changes including files and folders

Code Explorer Popular Question For Shell