Git Cheat Sheet/Discard unstaged changes

Restore file contents from HEAD or index.

Section: Snapshotting and Commits

Discard unstaged changes

bash
bash
git restore path/to/file

Learn the surrounding workflow

Compare similar commands or jump into common fixes when this command is part of a bigger troubleshooting path.

Related commands

Same sheet · prioritizing Snapshotting and Commits
Unstage a path
Remove a file from the index without losing edits.
OpenIn sheetbashsame section
Status short format
Compact status listing.
OpenIn sheetbashsame section
Status with branch info
Short status plus branch tracking summary.
OpenIn sheetbashsame section
Stage a path
Stage a specific file.
OpenIn sheetbashsame section
Stage all changes
Stage modified, deleted, and untracked files.
OpenIn sheetbashsame section
Interactively stage hunks
Select hunks to stage.
OpenIn sheetbashsame section