Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 8 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,12 +164,11 @@ Multiple AI sessions can run on the same commit. If you start a second session w

| Command | Description |
| ---------------- | ------------------------------------------------------------------------------------------------- |
| `entire clean` | Clean up orphaned Entire data |
| `entire clean` | Clean up session data and orphaned Entire data (use `--all` for repo-wide cleanup) |
| `entire disable` | Remove Entire hooks from repository |
| `entire doctor` | Fix or clean up stuck sessions |
| `entire enable` | Enable Entire in your repository |
| `entire explain` | Explain a session or commit |
| `entire reset` | Delete the shadow branch and session state for the current HEAD commit |
| `entire resume` | Switch to a branch, restore latest checkpointed session metadata, and show command(s) to continue |
| `entire rewind` | Rewind to a previous checkpoint |
| `entire status` | Show current session info |
Expand Down Expand Up @@ -396,7 +395,7 @@ Entire automatically redacts detected secrets (API keys, tokens, credentials) wh
| "Not a git repository" | Navigate to a Git repository first |
| "Entire is disabled" | Run `entire enable` |
| "No rewind points found" | Work with your configured agent and commit your changes |
| "shadow branch conflict" | Run `entire reset --force` |
| "shadow branch conflict" | Run `entire clean --force` |

### SSH Authentication Errors

Expand Down Expand Up @@ -425,11 +424,14 @@ ENTIRE_LOG_LEVEL=debug entire status
}
```

### Resetting State
### Cleaning Up State

```
# Reset shadow branch for current commit
entire reset --force
# Clean session data for current commit
entire clean --force

# Clean all orphaned data across the repository
entire clean --all --force

# Disable and re-enable
entire disable && entire enable --force
Expand Down
Loading
Loading