Replies: 1 comment 5 replies
-
I have to admit my git knowledge is limited to "I check out code and submit a PR". Does one handle incompatible changes better than the other? My concern with automatic code changes are how it detects when the change form master is not applicable to the current production branch (even though someone added the |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi all,
Right now the Backporting mechanism we have in place is using the default cherry-pick merge strategy that the tool itself is setting [1], which is strategy
recursive
with optiontheirs
.This default seems to differ with resepct to the actual git-merge default strategy [2], which is
ort
withfind-renames
option.Since this choice will affect how backporting pull requests are generated, I'd like to raise this point in order to choose the proper merge-strategy together based on what is our expectation (especially considering the conflicts resolution perspective).
[1] https://github.com/kiegroup/git-backporting?tab=readme-ov-file#cherry-pick-strategy
[2] https://git-scm.com/docs/git-merge#Documentation/git-merge.txt--sltstrategygt
Beta Was this translation helpful? Give feedback.
All reactions