Skip to content

Revisit how we create sync PRs #472

@jenstroeger

Description

@jenstroeger

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?

Metadata

Metadata

Assignees

Labels

ciImprovements or additions to CI checks

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions