Skip to content

Commit 702b7d1

Browse files
committed
fix root repo wording
1 parent 13d64b4 commit 702b7d1

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4949
- Fixed suppressing editing of locked classes (#301)
5050
- Fixed importing CSP files (#251)
5151
- Fixed changing favorites for users without permissions (#587)
52+
- Fix wording for Git Repo Root Directory (#601)
5253

5354
## [2.6.0] - 2024-10-07
5455

cls/SourceControl/Git/Settings.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Class SourceControl.Git.Settings Extends %RegisteredObject
88
/// Path to git executable
99
Property gitBinPath As %String(MAXLEN = "");
1010

11-
/// Local git repo root folder
11+
/// Local git repo root directory
1212
Property namespaceTemp As %String(MAXLEN = "") [ InitialExpression = {##class(SourceControl.Git.Utils).TempFolder()}, Required ];
1313

1414
/// Path to private key file for SSH remotes; if file does not exist, later prompts will help set it up with proper ownership

csp/gitprojectsettings.csp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ body {
242242
</div>
243243

244244
<div class="form-group row mb-3">
245-
<label for="namespaceTemp" class="offset-sm-1 col-sm-3 col-form-label" data-toggle="tooltip" data-placement="top" title="Absolute path to you project">Temp folder for this namespace<br/></label>
245+
<label for="namespaceTemp" class="offset-sm-1 col-sm-3 col-form-label" data-toggle="tooltip" data-placement="top" title="Absolute path to you project">Git Repo Root Directory<br/></label>
246246
<server>
247247
set dir = ##class(%File).NormalizeDirectory(settings.namespaceTemp)
248248
if (settings.namespaceTemp '= "") && ##class(%File).DirectoryExists(dir_".git") {

0 commit comments

Comments
 (0)