Skip to content

Commit 9dee402

Browse files
authored
Merge pull request #606 from intersystems/issue-601
fix root repo wording
2 parents f1d548f + dde1fe5 commit 9dee402

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
@@ -50,6 +50,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5050
- Fixed importing CSP files (#251)
5151
- Fixed changing favorites for users without permissions (#587)
5252
- Fix creating new branch from Git Web UI (#591)
53+
- Fix wording for Git Repo Root Directory (#601)
5354

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

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)