Skip to content

Commit 4d01092

Browse files
authored
Merge pull request #50 from edgardmessias/fix_44
Fixed commit for all changed files (Close #44)
2 parents 2175025 + 6b61cab commit 4d01092

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

package.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,11 @@
5454
"title": "Commit Selected",
5555
"category": "SVN"
5656
},
57+
{
58+
"command": "svn.commitWithMessage",
59+
"title": "Commit All Changed Files",
60+
"category": "SVN"
61+
},
5762
{
5863
"command": "svn.openDiffHead",
5964
"title": "Diff Changes HEAD",

src/repository.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ export class Repository {
5050
Uri.file(repository.root)
5151
);
5252
this.sourceControl.acceptInputCommand = {
53-
command: "svn.commit",
54-
title: "commit",
53+
command: "svn.commitWithMessage",
54+
title: "Commit All Changed Files",
5555
arguments: [this.sourceControl]
5656
};
5757
this.sourceControl.quickDiffProvider = this;

0 commit comments

Comments
 (0)