Skip to content
Merged
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
2 changes: 1 addition & 1 deletion 01-setup-and-first-steps/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ That's it for getting started! As you become comfortable, you can explore additi
| `/new` | Ends the current session (saving it to history for search/resume) and starts a fresh conversation. |
| `/resume` | Switch to a different session (optionally specify session ID or name) |
| `/rename` | Rename the current session (omit the name to auto-generate one) |
| `/rewind` | Open a timeline picker to roll back to any earlier point in the conversation |
| `/rewind` | Open a timeline picker to roll back to any earlier point in the conversation; optionally restores the files Copilot changed (works without git) |
| `/usage` | Display session usage metrics and statistics, including quota progress bars |
| `/session` | Show session info and workspace summary; use `/session delete`, `/session delete <id>`, or `/session delete-all` to remove sessions |
| `/share` | Export session as a markdown file, GitHub gist, or self-contained HTML file |
Expand Down
4 changes: 2 additions & 2 deletions 02-context-conversations/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ Context usage: 62k/200k tokens (31%)

> 💡 **When to use `/clear` or `/new`**: If you've been reviewing books.py and want to switch to discussing utils.py, run /new first (or /clear if you don't need the session history). Otherwise stale context from the old topic may confuse responses.

> 💡 **Made a mistake or want to try a different approach?** Use `/rewind` (or press Esc twice) to open a **timeline picker** that lets you roll back to any earlier point in your conversation, not just the most recent one. This is useful when you went down the wrong path and want to backtrack without starting over entirely.
> 💡 **Made a mistake or want to try a different approach?** Use `/rewind` (or press Esc twice) to open a **timeline picker** that lets you roll back to any earlier point in your conversation, not just the most recent one. When you rewind, Copilot CLI asks whether you want to restore only the conversation or also undo the file changes Copilot made — no git repository required. This is useful when you went down the wrong path and want to backtrack without starting over entirely.

---

Expand Down Expand Up @@ -639,7 +639,7 @@ copilot
| Situation | Action | Why |
|-----------|--------|-----|
| Starting new topic | `/clear` | Removes irrelevant context |
| Went down wrong path | `/rewind` | Roll back to any earlier point |
| Went down wrong path | `/rewind` | Roll back conversation (and optionally restore files) to any earlier point |
| Long conversation | `/compact` | Summarizes history, frees tokens |
| Need specific file | `@file.py` not `@folder/` | Loads only what you need |
| Hitting limits | `/new` or `/clear` | Fresh context |
Expand Down
Loading