Answers for "uncommit all changes from a file in a branch"

3

How to revert uncommitted changes including files and folders?

# 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>
Posted by: Guest on March-24-2020
4

git remove all uncommitted changes

git add . 
git stash 
git stash drop
git clean -fdx
Posted by: Guest on November-11-2021

Code answers related to "uncommit all changes from a file in a branch"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language