Skip to content

Commit edabc52

Browse files
authored
Merge pull request #9845 from microsoft/ntrogh/session-sync
Remove session sync article
2 parents 76e5fba + 907584c commit edabc52

3 files changed

Lines changed: 5 additions & 10 deletions

File tree

docs/copilot/chat/session-insights.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ MetaSocialImage: ../images/shared/github-copilot-social.png
66
---
77
# Query session history with chronicle
88

9-
Your GitHub Copilot sessions build a searchable history of everything you work on. Ask natural language questions about past sessions, generate standup reports, get personalized tips, and search your coding history. With [session sync](/docs/copilot/chat/session-sync.md) active by default, queries draw from sessions across Copilot CLI, coding agent, code review, and VS Code.
9+
Your GitHub Copilot sessions build a searchable history of everything you work on. Ask natural language questions about past sessions, generate standup reports, get personalized tips, and search your coding history.
1010

1111
## Chronicle commands
1212

@@ -18,11 +18,11 @@ Use these commands in the chat input to query your session history:
1818
| `/chronicle:tips` | Analyze your recent session history (typically 7 days) and suggest ways to use Copilot more effectively. Tips are grounded in your actual usage patterns: tools you rarely use, prompting patterns that lead to better results, or workflow improvements. |
1919
| `/chronicle:cost-tips` | Analyze recent sessions to identify opportunities to reduce token usage and Copilot cost. |
2020
| `/chronicle:search <query>` | Search sessions by keyword, file path, or PR or issue reference. Uses full-text indexing across session summaries, conversation turns, file paths, and checkpoint notes. Results include session IDs and timestamps so you can resume relevant sessions. |
21-
| `/chronicle:reindex` | Rebuild the local session index and sync session data to your account. |
21+
| `/chronicle:reindex` | Rebuild the local session index. |
2222

2323
## Free-form questions
2424

25-
You can also ask free-form questions about your session history directly in chat. For example, type "What files did I edit yesterday?" or "Have I worked on anything related to the payments API?" and Copilot searches your synced session history to answer. Unlike `/chronicle:search` which performs a direct content search, free-form questions use semantic understanding to find relevant sessions.
25+
You can also ask free-form questions about your session history directly in chat. For example, type "What files did I edit yesterday?" or "Have I worked on anything related to the payments API?" and Copilot searches your local session history to answer. Unlike `/chronicle:search` which performs a direct content search, free-form questions use semantic understanding to find relevant sessions.
2626

2727
## What gets tracked
2828

@@ -33,11 +33,11 @@ For each chat session, the local session store records:
3333
* **Files touched**: file paths from tool calls such as `replace_string_in_file`, `create_file`, `read_file`, and `apply_patch`.
3434
* **External references**: PR numbers, issue numbers, and commit SHAs extracted from GitHub MCP tool calls and terminal commands.
3535

36-
Data is stored in a local SQLite database. Secrets such as tokens, API keys, passwords, and connection strings are automatically filtered before data is synced to the cloud.
36+
Data is stored in a local SQLite database.
3737

3838
## Reindex the session store
3939

40-
If sessions appear missing or the database becomes corrupted, rebuild the index. Reindexing also syncs your session data to your account.
40+
If sessions appear missing or the database becomes corrupted, rebuild the index.
4141

4242
```prompt
4343
/chronicle:reindex
@@ -50,10 +50,8 @@ Situations where reindexing helps:
5050
* After restoring session files from a backup
5151
* After an unexpected crash that prevented data from flushing to the store
5252
* After manually deleting session directories
53-
* After opting back into session sync
5453

5554
## Related content
5655

57-
* [Session sync](/docs/copilot/chat/session-sync.md) - Sync sessions to your GitHub account for cross-device access
5856
* [Manage chat sessions](/docs/copilot/chat/chat-sessions.md) - Create and organize chat sessions
5957
* [Settings reference](/docs/copilot/reference/copilot-settings.md) - All Copilot settings

docs/copilot/reference/copilot-settings.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,6 @@ The team is continuously working on improving Copilot in VS Code and adding new
9494
| `setting(chat.utilitySmallModel)`<br/>Override the language model used for fast, lightweight [utility flows](/docs/copilot/customization/language-models.md#change-the-model-for-utility-tasks), such as commit messages, rename suggestions, and intent detection. A fast, inexpensive model is recommended. | `"Default"` |
9595
| `setting(github.copilot.chat.edits.suggestRelatedFilesFromGitHistory)` _(Experimental)_<br/>Suggest related files from git history in chat context. | `true` |
9696
| `setting(github.copilot.chat.localIndex.enabled)`<br/>Enable local session tracking for [session insights](/docs/copilot/chat/session-insights.md) and `/chronicle` commands. | `true` |
97-
| `setting(chat.sessionSync.enabled)`<br/>Enable [session sync](/docs/copilot/chat/session-sync.md) to GitHub.com. When enabled, Copilot session data syncs to your GitHub account for cross-device access. Requires `setting(github.copilot.chat.localIndex.enabled)` to also be enabled. | `true` |
98-
| `setting(chat.sessionSync.excludeRepositories)`<br/>Repository patterns to exclude from [session sync](/docs/copilot/chat/session-sync.md). Use exact `owner/repo` names or glob patterns like `my-org/*`. Sessions from matching repositories are stored locally only. | `[]` |
9997

10098
## Agent settings
10199

docs/toc.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@
7676
["Overview", "/docs/copilot/chat/copilot-chat"],
7777
["Chat Sessions", "/docs/copilot/chat/chat-sessions"],
7878
["Session Insights", "/docs/copilot/chat/session-insights"],
79-
["Sync Sessions", "/docs/copilot/chat/session-sync"],
8079
["Add Context", "/docs/copilot/chat/copilot-chat-context"],
8180
["Inline Chat", "/docs/copilot/chat/inline-chat"],
8281
["Review Edits", "/docs/copilot/chat/review-code-edits"],

0 commit comments

Comments
 (0)