@@ -33,16 +33,8 @@ If you use [TortoiseSVN](https://tortoisesvn.net/), make sure the option
3333** Command Line Tools** is checked during installation and
3434` C:\Program Files\TortoiseSVN\bin ` is available in PATH.
3535
36- ## Features
37-
38- * [x] Source Control View
39- * [x] Quick Diffs in gutter
40- * [x] Status Bar
41- * [ ] SVN Commands
42-
4336## Feedback & Contributing
4437
45- * This is a work in progress and im sure there will be some issues.
4638* Please report any bugs, suggestions or documentation requests via the
4739 [ Issues] ( https://github.com/JohnstonCode/svn-scm/issues )
4840* Feel free to submit
@@ -54,3 +46,65 @@ If you use [TortoiseSVN](https://tortoisesvn.net/), make sure the option
5446* @edgardmessias
5547* @csholmq
5648* @rwatts3
49+
50+ ## Features
51+
52+ * [x] Source Control View
53+ * [x] Quick Diffs in gutter
54+ * [x] Status Bar
55+ * [ ] SVN Commands
56+
57+ ## Settings
58+
59+ ` svn.enabled `
60+
61+ * Enables Svn as a SCM in VS Code.
62+
63+ ` svn.path `
64+
65+ * Path to the svn executable
66+
67+ ` svn.diff.withHead `
68+
69+ * Show diff changes using latest revision in the repository. Set false to use latest revision in local folder
70+
71+ ` svn.layout.trunk `
72+
73+ * Relative path for 'trunk' in SVN URL, 'null' to disable. (Ex.: 'trunk', 'main')
74+
75+ ` svn.layout.branches `
76+
77+ * Relative path for 'branches' in SVN URL, 'null' to disable. (Ex.: 'branches', 'versions')
78+
79+ ` svn.layout.tags `
80+
81+ * Relative path for 'tags' in SVN URL, 'null' to disable. (Ex.: 'tags', 'stamps')
82+
83+ ` svn.multipleFolders.enabled `
84+
85+ * Allow to find subfolders using SVN
86+
87+ ` svn.multipleFolders.depth `
88+
89+ * Maximum depth to find subfolders using SVN
90+ ` "default" ` &mdash ; 4
91+
92+ ` svn.multipleFolders.ignore `
93+
94+ * Folders to ignore using SVN
95+ ` "default" ` &mdash ; ` ["**/.git", "**/.hg", "**/vendor", "**/node_modules"] `
96+
97+ ` svn.sourceControl.ignoreOnCommit `
98+
99+ * Changelists to ignore on commit
100+ ` "default" ` &mdash ; ` ["ignore-on-commit"] `
101+
102+ ` svn.sourceControl.showExternal `
103+
104+ * Allow to show in source control the list the external folders
105+ ` "default" ` &mdash ; false
106+
107+ ` svn.log.length `
108+
109+ * Number of commit messages to log
110+ ` "default" ` &mdash ; 50
0 commit comments