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 @@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
- When cloning a repo with Configure, that repo's embedded-git-config file will overwrite previous settings (#819)
- 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)

## [2.13.1] - 2025-09-16
Expand Down
1 change: 1 addition & 0 deletions cls/SourceControl/Git/Utils.cls
Original file line number Diff line number Diff line change
Expand Up @@ -616,6 +616,7 @@ ClassMethod Push(remote As %String = "origin", force As %Boolean = 0) As %Status
if (force) {
set args($i(args)) = "--force"
}
set args($i(args)) = "--set-upstream"
set args($i(args)) = remote
set args($i(args)) = branchName
do ..RunGitWithArgs(.errStream, .outStream, "push", args...)
Expand Down
Loading