From d469ae3ac7c20673746767c51f4b66271ea509ec Mon Sep 17 00:00:00 2001 From: Christopher Date: Tue, 28 Nov 2017 12:43:19 +0000 Subject: [PATCH] Revert "Fixed commit for all changed files (Close #44)" --- package.json | 5 ----- src/repository.ts | 4 ++-- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/package.json b/package.json index b0055274..c1f29ffb 100644 --- a/package.json +++ b/package.json @@ -54,11 +54,6 @@ "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 8d8d2f50..351b718d 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.commitWithMessage", - title: "Commit All Changed Files", + command: "svn.commit", + title: "commit", arguments: [this.sourceControl] }; this.sourceControl.quickDiffProvider = this;