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
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?
I’ve used
rsyncin the past but unfortunately I’m not deeply familiar with all of its features.My main concern about using
rsyncis 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 thersyncapproach:gitto prefer upstream changes (docs):theirsoption for the default merge strategyortwe tellgitto 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
ortstrategy for certain hunks: for example, the Makefile should merge using thetheirsoption except for the hunk covering line 7python-package-template/Makefile
Line 7 in 4e0a9aa
where I’d like to either exclude a merge completely or merge with the
oursoption.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
gitbut perhaps a simplegit restoreafter the above merge would do?