Skip to content
Merged
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
21 changes: 10 additions & 11 deletions 02-context-conversations/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,16 @@ copilot --resume
copilot --resume abc123
```

> 💡 **How do I find a session ID?** You don't need to memorize them. Running `copilot --resume` without an ID shows an interactive list of your previous sessions, their names, IDs, and when they were last active. Just pick the one you want.
>
> **What about multiple terminals?** Each terminal window is its own session with its own context. If you have Copilot CLI open in three terminals, that's three separate sessions. Running `--resume` from any terminal lets you browse all of them. The `--continue` flag grabs whichever session was closed most recently, no matter which terminal it was in.
>
> **Can I switch sessions without restarting?** Yes. Use the `/resume` slash command from inside an active session:
> ```
Copy link

Copilot AI Mar 10, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The fenced code block inside this callout doesn’t specify a language (elsewhere in this README, blockquoted examples use bash for consistency and syntax highlighting). Consider changing this fence to bash to match the other CLI examples.

Suggested change
> ```
> ```bash

Copilot uses AI. Check for mistakes.
> > /resume
> # Shows a list of sessions to switch to
> ```

### Organize Your Sessions

Give sessions meaningful names so you can find them later:
Expand Down Expand Up @@ -430,17 +440,6 @@ copilot
> Find all TODO comments in @samples/book-app-project/**/*.py
```

### Switch Sessions While Working

Inside an interactive session, use the `/resume` command:

```bash
copilot

> /resume
# Shows a list of sessions to switch to
```

### View Session Info

```bash
Expand Down
Loading