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 5042c24 commit 51c9d49Copy full SHA for 51c9d49
src/git/models/repository.ts
@@ -720,7 +720,7 @@ export class Repository implements Disposable {
720
@log()
721
async pull(options?: { progress?: boolean; rebase?: boolean }) {
722
const { progress, ...opts } = { progress: true, ...options };
723
- if (!progress) return this.pullCore();
+ if (!progress) return this.pullCore(opts);
724
725
return window.withProgress(
726
{
0 commit comments