diff --git a/extensions/git/src/repository.ts b/extensions/git/src/repository.ts index 581c6f600e1..5cf5cba1f51 100644 --- a/extensions/git/src/repository.ts +++ b/extensions/git/src/repository.ts @@ -948,7 +948,6 @@ export class Repository implements Disposable { const fetchOnPull = config.get('fetchOnPull'); const autoStash = config.get('autoStash'); - await this.run(Operation.Pull, async () => { const doStash = autoStash && this.trackedCount > 0; @@ -957,9 +956,9 @@ export class Repository implements Disposable { } if (fetchOnPull) { - await this.run(Operation.Pull, () => this.repository.pull(rebase)); + await this.repository.pull(rebase); } else { - await this.run(Operation.Pull, () => this.repository.pull(rebase, remote, branch)); + await this.repository.pull(rebase, remote, branch); } if (doStash) {