Skip to content

Commit bd8a10e

Browse files
committed
git: show output command
1 parent b6eda35 commit bd8a10e

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

extensions/git/src/commands.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@ export class CommandCenter {
113113
commands.registerCommand('git.checkout', this.checkout, this),
114114
commands.registerCommand('git.sync', this.sync, this),
115115
commands.registerCommand('git.publish', this.publish, this),
116+
commands.registerCommand('git.showOutput', this.showOutput, this),
116117
);
117118
}
118119

@@ -323,6 +324,10 @@ export class CommandCenter {
323324
await this.model.push(choice, branchName, { setUpstream: true });
324325
}
325326

327+
showOutput(): void {
328+
this.outputChannel.show();
329+
}
330+
326331
dispose(): void {
327332
this.disposables.forEach(d => d.dispose());
328333
}

0 commit comments

Comments
 (0)