Files
30-seconds-of-code/git/snippets/discard-uncommitted.md
2023-05-01 22:28:09 +03:00

408 B

title, type, tags, cover, dateModified
title type tags cover dateModified
Discard uncommitted changes snippet
branch
arrays 2021-04-13T21:10:59+03:00

Discards all uncommitted changes to the current branch.

  • Use git reset --hard HEAD to reset the local directory to match the latest commit and discard all unstaged changes.
git reset --hard HEAD
git reset --hard HEAD
# Discards all unstaged changes