Answers for "git discard 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
1

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
5

git reset one file

git checkout HEAD -- my-file.txt
Posted by: Guest on April-28-2020
7

undo unstaged changes git

git checkout -- .
Posted by: Guest on May-01-2020
4

git discard unstaged files

git stash save --keep-index --include-untracked
Posted by: Guest on June-02-2020
1

git discard staged changes

git reset HEAD
git checkout .
Posted by: Guest on June-02-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language