Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revisit how we create sync PRs #472

Open
jenstroeger opened this issue Feb 14, 2023 · 1 comment
Open

Revisit how we create sync PRs #472

jenstroeger opened this issue Feb 14, 2023 · 1 comment
Assignees
Labels
ci Improvements or additions to CI checks

Comments

@jenstroeger
Copy link
Owner

I’ve used rsync in the past but unfortunately I’m not deeply familiar with all of its features.

My main concern about using rsync is that it clobbers the local files, and that then results in a larger change set and possible merge conflicts. I’ve been scratching my head about that for a while now, and wanted to share an alternative to the rsync approach:

  • Check out the downstream repository as usual, and not into a subfolder;
  • Add this upstream template repository as a remote (docs):
    git remote add upstream https://github.com/jenstroeger/python-package-template.git
  • Merge from the upstream repository and ask git to prefer upstream changes (docs):
    git merge --squash --allow-unrelated-histories --no-commit --strategy ort --strategy-option theirs <REF>  # Where <REF> can be `main` or some other git ref.
    By using the theirs option for the default merge strategy ort we tell git to prefer the upstream changes for merge conflicts.

Judging from a few local tests, this allowed me to merge the upstream changes into an independent private repository without merge conflicts; however, the resulting change set lost a few local changes, e.g. the package name of my repository whose merge conflict was resolved using the upstream template’s package name. But maybe that’s ok, because we need to review and adjust the PR anyway 🤔

I do wonder if it’s possible to configure the merge driver such that I can change the strategy option of the ort strategy for certain hunks: for example, the Makefile should merge using the theirs option except for the hunk covering line 7

PACKAGE_NAME := package

where I’d like to either exclude a merge completely or merge with the ours option.

It might also be worth digging around here or here.

Regarding those files/path we want to exclude from the automatic merge (e.g. here): that doesn’t really seem to be doable with git but perhaps a simple git restore after the above merge would do?

@jenstroeger jenstroeger added the ci Improvements or additions to CI checks label Feb 14, 2023
@eduardocardoso
Copy link

IMO a better option would be to generate a patch with the desired changes from the template repository and apply it to the target repository.
This way there is a little more control over the merge conflicts, like leaving the conflicts in the file with conflict markers, as done on getpassport/template_services_python#435 and improved on getpassport/template_services_python#439.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
ci Improvements or additions to CI checks
Projects
None yet
Development

No branches or pull requests

3 participants