From 6b61cab592b5a78fa5336103fc682c018567288a Mon Sep 17 00:00:00 2001 From: Edgard Lorraine Messias Date: Tue, 28 Nov 2017 10:11:16 -0200 Subject: [PATCH] Fixed commit for all changed files (Close #44) --- package.json | 5 +++++ src/repository.ts | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index c1f29ffb..b0055274 100644 --- a/package.json +++ b/package.json @@ -54,6 +54,11 @@ "title": "Commit Selected", "category": "SVN" }, + { + "command": "svn.commitWithMessage", + "title": "Commit All Changed Files", + "category": "SVN" + }, { "command": "svn.openDiffHead", "title": "Diff Changes HEAD", diff --git a/src/repository.ts b/src/repository.ts index 351b718d..8d8d2f50 100644 --- a/src/repository.ts +++ b/src/repository.ts @@ -50,8 +50,8 @@ export class Repository { Uri.file(repository.root) ); this.sourceControl.acceptInputCommand = { - command: "svn.commit", - title: "commit", + command: "svn.commitWithMessage", + title: "Commit All Changed Files", arguments: [this.sourceControl] }; this.sourceControl.quickDiffProvider = this;