Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Settings page no longer removes remote when saving after cloning (#858)
- Always set the remote as the upstream branch when pushing (#871)
- Fixed import of HL7 and LUT files added at the same time as their mappings (#864)
- Fixed issue where Git's interactive credential manager causes Git push/pull/fetch to hang (#235)

## [2.13.1] - 2025-09-16

Expand Down
2 changes: 2 additions & 0 deletions cls/SourceControl/Git/Utils.cls
Original file line number Diff line number Diff line change
Expand Up @@ -1912,6 +1912,8 @@ ClassMethod RunGitCommandWithInput(command As %String, inFile As %String = "", O
set newArgs($increment(newArgs)) = "user.name="_username
set newArgs($increment(newArgs)) = "-c"
set newArgs($increment(newArgs)) = "user.email="_email
set newArgs($increment(newArgs)) = "-c"
set newArgs($increment(newArgs)) = "credential.interactive=false"
}

set newArgs($increment(newArgs)) = command
Expand Down
Loading