Skip to content

Commit 8f76655

Browse files
authored
Merge pull request #803 from raymond-rebbeck/fix-pull-diff-direction
When performing a pull set diffBase so that the diff to sync files with IRIS is performed in the intended direction
2 parents bda0474 + e047de3 commit 8f76655

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
### Fixed
1111
- Fixed importing Lookup Tables that do not already exist (#791)
12+
- Fixed syncing IRIS with files after pull to diff in the intended direction (#802)
1213

1314
## [2.12.1] - 2025-06-27
1415

cls/SourceControl/Git/Utils.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1912,7 +1912,7 @@ ClassMethod RunGitCommandWithInput(command As %String, inFile As %String = "", O
19121912
// Verbose output should not be required as pull already outputs a summary
19131913
set syncIrisWithDiffVerbose = 0
19141914
// The current revision, prior to the pull, will be compared against
1915-
set diffCompare = ..GetCurrentRevision()
1915+
set diffBase = ..GetCurrentRevision()
19161916
} elseif (command = "merge") || (command = "rebase") {
19171917
set syncIrisWithCommand = 1
19181918
if $data(args) && $data(args(args),diffCompare) {

0 commit comments

Comments
 (0)