You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add recently used branches feature for PR creation
- Added RECENTLY_USED_BRANCHES state key and RecentlyUsedBranchesState interface
- Added RECENTLY_USED_BRANCHES_COUNT setting key (default: 5, range: 0-20)
- Added setting in package.json with localization
- Implemented getRecentlyUsedBranches() and saveRecentlyUsedBranch() helper methods
- Modified branchPicks() to show recently used branches at the top with separators
- Added calls to save base branch when selected and when PR is created
Co-authored-by: alexr00 <38270282+alexr00@users.noreply.github.com>
Copy file name to clipboardExpand all lines: package.nls.json
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,7 @@
21
21
]
22
22
},
23
23
"githubPullRequests.branchListTimeout.description": "Maximum time in milliseconds to wait when fetching the list of branches for pull request creation. Repositories with thousands of branches may need a higher value to ensure all branches (including the default branch) are retrieved. Minimum value is 1000 (1 second).",
24
+
"githubPullRequests.recentlyUsedBranchesCount.description": "The maximum number of recently used base branches to track and show at the top of the branch picker when creating a pull request. Set to 0 to disable this feature.",
24
25
"githubPullRequests.codingAgent.description": "Enables integration with the asynchronous Copilot coding agent. The '#copilotCodingAgent' tool will be available in agent mode when this setting is enabled.",
25
26
"githubPullRequests.codingAgent.uiIntegration.description": "Enables UI integration within VS Code to create new coding agent sessions.",
26
27
"githubPullRequests.codingAgent.autoCommitAndPush.description": "Allow automatic git operations (commit, push) to be performed when starting a coding agent session",
0 commit comments