Skip to content

Commit 7d948b4

Browse files
committed
Refactors Git provider into sub-providers
- Graph operations - Search operations
1 parent 0eebdf7 commit 7d948b4

File tree

15 files changed

+1926
-1795
lines changed

15 files changed

+1926
-1795
lines changed

src/commands/git/search.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ export class SearchGitCommand extends QuickCommand<State> {
201201
const searchKey = getSearchQueryComparisonKey(search);
202202

203203
if (context.resultsPromise == null || context.resultsKey !== searchKey) {
204-
context.resultsPromise = state.repo.git.richSearchCommits(search);
204+
context.resultsPromise = state.repo.git.commits().searchCommits(search);
205205
context.resultsKey = searchKey;
206206
}
207207

0 commit comments

Comments
 (0)