-
Notifications
You must be signed in to change notification settings - Fork 3.9k
[bot] docs(learning-hub): CLI session commands and personal skills path updates #1165
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,7 +3,7 @@ title: 'Copilot Configuration Basics' | |
| description: 'Learn how to configure GitHub Copilot at user, workspace, and repository levels to optimize your AI-assisted development experience.' | ||
| authors: | ||
| - GitHub Copilot Learning Hub Team | ||
| lastUpdated: 2026-03-24 | ||
| lastUpdated: 2026-03-25 | ||
| estimatedReadingTime: '10 minutes' | ||
| tags: | ||
| - configuration | ||
|
|
@@ -413,6 +413,22 @@ The `/undo` command reverts the last turn—including any file changes the agent | |
|
|
||
| Use `/undo` when the agent's last response went in an unwanted direction and you want to try a different approach from that point. | ||
|
|
||
| The `/cd` command changes the working directory for the current session. Each session maintains its own working directory that persists when you switch between sessions: | ||
|
|
||
| ``` | ||
| /cd ~/projects/my-other-repo | ||
| ``` | ||
|
|
||
| This is useful when you have multiple backgrounded sessions each focused on a different project directory. | ||
|
|
||
| The `--effort` flag (shorthand for `--reasoning-effort`) controls how much computational reasoning the model applies to a request: | ||
|
|
||
| ```bash | ||
| gh copilot --effort high "Refactor the authentication module" | ||
| ``` | ||
|
|
||
| Accepted values are `low`, `medium`, and `high`. You can also set a default via the `effortLevel` config setting. | ||
|
Comment on lines
+424
to
+430
|
||
|
|
||
| ## Common Questions | ||
|
|
||
| **Q: How do I disable Copilot for specific files?** | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The new
/cddocs make this section cover more than “two commands for managing session state” (it now discusses/new,/clear,/undo, and/cd). Please update the lead-in sentence and/or the table so the count and framing matches the commands documented here.