Merge branch 'master', commit 'refs/pull/56048/head' of github.com:Microsoft/vscode into pr/56048

This commit is contained in:
Joao Moreno
2018-09-12 15:37:41 +02:00
5 changed files with 33 additions and 0 deletions

View File

@@ -958,6 +958,9 @@ export class Repository {
if (opts.signCommit) {
args.push('-S');
}
if (opts.empty) {
args.push('--allow-empty');
}
try {
await this.run(args, { input: message || '' });