-
Notifications
You must be signed in to change notification settings - Fork 11
Description
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
gitto prefer upstream changes (docs):By using thegit merge --squash --allow-unrelated-histories --no-commit --strategy ort --strategy-option theirs <REF> # Where <REF> can be `main` or some other git ref.
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 ort strategy for certain hunks: for example, the Makefile should merge using the theirs option except for the hunk covering line 7
python-package-template/Makefile
Line 7 in 4e0a9aa
| 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?