Answers for "git delete local changes"

17

git discard local changes

# Discarding local changes (permanently) to a file:
git checkout -- <file>

# Discard all local changes to all files permanently:
git reset --hard
Posted by: Guest on May-07-2020
2

remove local changes git

git fetch  # will fetch the latest changes on the remote
git reset --hard origin/master # will set your local branch to match the representation of the remote just pulled down.
Posted by: Guest on February-08-2021
-1

clear local changes in git

git checkout .
Posted by: Guest on December-20-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language