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 13f136f commit 1230b7cCopy full SHA for 1230b7c
extensions/git/src/commands.ts
@@ -1625,7 +1625,7 @@ export class CommandCenter {
1625
1626
const postCommitCommand = config.get<'none' | 'push' | 'sync'>('postCommitCommand');
1627
if ((opts.postCommitCommand === undefined && postCommitCommand === 'push') || opts.postCommitCommand === 'push') {
1628
- await this._push(repository, { pushType: PushType.Push, silent: true });
+ await this._push(repository, { pushType: PushType.Push });
1629
}
1630
if ((opts.postCommitCommand === undefined && postCommitCommand === 'sync') || opts.postCommitCommand === 'sync') {
1631
await this.sync(repository);
0 commit comments