File tree 2 files changed +10
-0
lines changed
cls/SourceControl/Git/PullEventHandler
2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
17
17
- Fixed business processes and rules not being added to source control automatically (#676 )
18
18
- Embedded Git commits settings when cloning empty repo to avert any issues
19
19
- Fixed Import All options not importing the Embedded Git configuration file
20
+ - That configuration file now imports before everything else (#697 )
20
21
- Improved performance of IDE editing and baselining of decomposed productions
21
22
- Fixed Discard / Stash not working on deletes (#688 )
22
23
- Fixed errors deploying decomposed production changes on Windows network drives (#696 )
Original file line number Diff line number Diff line change @@ -10,6 +10,15 @@ Parameter DESCRIPTION = "Performs an incremental load and compile of all changes
10
10
Method OnPull () As %Status
11
11
{
12
12
set sc = $$$OK
13
+
14
+ // certain items must be imported before everything else.
15
+ for i =1 :1 :$get (..ModifiedFiles ) {
16
+ set internalName = ..ModifiedFiles (i ).internalName
17
+ if internalName = ##class (SourceControl.Git.Settings.Document ).#INTERNALNAME {
18
+ set sc = $$$ADDSC(sc , ##class (SourceControl.Git.Utils ).ImportItem (internalName ))
19
+ }
20
+ }
21
+
13
22
set nFiles = 0
14
23
15
24
for i =1 :1 :$get (..ModifiedFiles ){
You can’t perform that action at this time.
0 commit comments