We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a80b505 commit 0d4334bCopy full SHA for 0d4334b
CHANGELOG.md
@@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
10
### Added
11
- Added 'git push --force' in expert mode (#527)
12
+- Add remote repository to settings page (#448)
13
14
## [2.6.0] - 2024-10-07
15
csp/gitprojectsettings.csp
@@ -97,7 +97,8 @@ body {
97
}
98
99
set newRemote = $Get(%request.Data("remoteRepo",1))
100
- if (newRemote '= ##class(SourceControl.Git.Utils).GetConfiguredRemote()) {
+ // If entry was modified, set new remote repo
101
+ if (newRemote '= ##class(SourceControl.Git.Utils).GetCensoredRemote()) {
102
do ##class(SourceControl.Git.Utils).SetConfiguredRemote(newRemote)
103
104
0 commit comments