Quantcast
Channel: How do I discard unstaged changes in Git? - Stack Overflow
Viewing all articles
Browse latest Browse all 42

Answer by msangel for How do I discard unstaged changes in Git?

$
0
0

No matter what state your repo is in you can always reset to any previous commit:

git reset --hard <commit hash>

This will discard all changes which were made after that commit.


Viewing all articles
Browse latest Browse all 42

Trending Articles