We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc86b0e commit 9113cd8Copy full SHA for 9113cd8
src/quickpicks/repositoriesQuickPick.ts
@@ -28,7 +28,7 @@ export class RepositoriesQuickPick {
28
goBackCommand?: CommandQuickPickItem
29
): Promise<RepositoryQuickPickItem | CommandQuickPickItem | undefined> {
30
const items = [
31
- ...Iterables.map(await Container.git.getRepositories(), r => new RepositoryQuickPickItem(r))
+ ...Iterables.map(await Container.git.getOrderedRepositories(), r => new RepositoryQuickPickItem(r))
32
] as (RepositoryQuickPickItem | CommandQuickPickItem)[];
33
34
if (goBackCommand !== undefined) {
0 commit comments