We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6eda35 commit bd8a10eCopy full SHA for bd8a10e
1 file changed
extensions/git/src/commands.ts
@@ -113,6 +113,7 @@ export class CommandCenter {
113
commands.registerCommand('git.checkout', this.checkout, this),
114
commands.registerCommand('git.sync', this.sync, this),
115
commands.registerCommand('git.publish', this.publish, this),
116
+ commands.registerCommand('git.showOutput', this.showOutput, this),
117
);
118
}
119
@@ -323,6 +324,10 @@ export class CommandCenter {
323
324
await this.model.push(choice, branchName, { setUpstream: true });
325
326
327
+ showOutput(): void {
328
+ this.outputChannel.show();
329
+ }
330
+
331
dispose(): void {
332
this.disposables.forEach(d => d.dispose());
333
0 commit comments