> ## Content Index
> Fetch the complete content index at: https://christophermoravec.com/llms.txt
> Use this file to discover other available public pages before exploring further.

# Claude Clue #31: Checkpoints Are Your Undo Button
- URL: https://christophermoravec.com/claude-clues/claude-clue-31-checkpoints-undo-button/
- Published: 2026-07-22T00:36:40.000Z
- Updated: 2026-07-22T00:36:39.000Z
- Description: Claude Code has a feature called checkpoints that can save your bacon.
- Author: Christopher Moravec
- Tags: Claude Clues

Claude Code has a feature called [checkpoints](https://code.claude.com/docs/en/checkpointing?ref=christophermoravec.com); every time you send a prompt, Claude Code snapshots your code. Hit Escape twice on an empty prompt, or type `/rewind`, and you can roll your code, your conversation, or both back to any earlier point.

This is great for fixing mistakes, but also for exploring what Claude did. Let Claude take a first pass, rewind, try a totally different approach, and keep whichever one I like. Same starting point, two real attempts. The rewind menu will also summarize part of the conversation to free up context, like a targeted [/compact (Clue #18)](https://christophermoravec.com/claude-clues/claude-clue-18-compact-clear-resume-context-management/).

One catch, it only tracks edits from Claude's own file tools. Anything you change outside the session, or a file Claude moves or deletes with a bash command, slips right past it. So keep using version control!

*Claude kept the receipts on this one too.*

*HT: Roscoe Rawson*