Added cert utility and documentation - #6
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: f4e742f571
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| "log", | ||
| "reflog", | ||
| "diff", | ||
| "show", | ||
| "describe", |
There was a problem hiding this comment.
Add rev-list to the read-only preview allowlist
When vsgit.showCommandPreview is enabled, routine refresh paths that call Repository.aheadBehind() run git rev-list --left-right --count HEAD...@{upstream} from the repositories/synchronize views, but rev-list is not treated as read-only here. That means simply refreshing or changing repo state opens a modal command preview for an internal status query, and cancelling it prevents ahead/behind data from updating; add rev-list to this allowlist like the other read-only commands.
Useful? React with 👍 / 👎.
| "submenu": "vsgit.repo", | ||
| "when": "scmProvider == git", |
There was a problem hiding this comment.
Route native SCM history actions to the clicked repository
Exposing the whole vsgit.repo submenu on the native Git source-control header makes entries like vsgit.history.show run with a native SourceControl/rootUri argument, but that command only handles {repoRoot} or VsGit tree nodes and then falls back to manager.getActive() via HistoryView.show(). In a multi-root workspace, choosing VsGit > History from a non-active Git repository therefore opens history for the active/first repo instead of the repo whose menu was clicked; resolve the native rootUri for these repo-menu commands or omit commands that cannot consume it.
Useful? React with 👍 / 👎.
No description provided.