chore: print to terminal when checking existence

This commit is contained in:
Cheng Liu 2024-06-27 16:56:46 -07:00
parent b645eeeb3d
commit 15addee110
No known key found for this signature in database
GPG key ID: EEC8452F7DB85CD6

View file

@ -50,6 +50,8 @@ export class GitRemoteFetchConfigService {
);
const checkBranches: string[] = Array.from(branchToValues.keys()).filter((x) => x !== '*');
this._terminalService.terminal.writeLine(`Checking tracking branches...`);
const remoteBranchExistenceInfo: Record<string, boolean> =
await this._gitService.checkRemoteBranchesExistenceAsync(remote, checkBranches);