Files
30-seconds-of-code/snippets/git/s/discard-uncommitted.md
2023-05-07 16:07:29 +03:00

422 B

title, type, language, tags, cover, dateModified
title type language tags cover dateModified
Discard uncommitted changes snippet git
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