This is not tested, but something like
Code:
# Initial setup
git switch -c local-desktop1 origin/branches/2021Q1
(make some changes)
git add (...)
git commit (...)
# Update upstream branch
git fetch branches/2021Q1
git switch local-desktop1
git rebase origin/branches/2021Q1
# New quarterly branch
git fetch branches/2021Q2
git switch local-desktop1
git rebase origin/branches/2021Q2
The last line did not work as intended. It did rebase not only the local commits, but also the public security fixes that went into 2021Q1, resulting in lots of merge conflicts.
With the help of the manpages I then was somehow successful with this:
git rebase --onto origin/branches/2021Q2 origin/branches/2021Q1 local-desktop1
git branch --set-upstream-to origin/branches/2021Q2
Then I tried if one could daisy-chain those branches (as I am quite tired of editing the same patch for N machines), i.e. create a
local-general, based on origin/branches/2021Q2 (for all the common local patches), and then a
local-desktop1, based on local-general, for the things specific to this machine (e.g. kernelconfig)
And this seems to work also.
OTOH, the versatility has a downside. I created a local branch from Rel 10.2, changed something in etc/syslog.conf, and added a new file into etc/ppp.
Then I did rebase the local branch to Rel 12.2. This did run without any error or warning.
The etc/syslog.conf does no longer exist in 12.2. It is now in sbin/syslog. The patch was nicely moved along to the new location.
The etc/ppp directory does also no longer exist in 12.2, as the content has been moved to usr.sbin/ppp. Now it was created and the new file is still there.
Certainly those actions taken are the most practical solution to handle such things. But, looking at the history now does not give much clue about what has happened. There seems no way to list commits with the changed files (except full diffs), and no information whatsoever seems to exist about where the change was originally created, or on which branch.
So I think I got the point why You guys warn about rebase being dangerous. It practically destroys the history.
But then, looking further, there are solutions to this specific issue as well: for archiving purposes the local branch could just be copied and kept attached to Rel. 10.2 (there seems to be an abundance of cheap branches available

), and then the new copy could be rebased to 12.2 with the
interactive option, manually verifying that the patches are still placed appropriately - and eventially updating the commitlog texts as necessary. I think that would be proper for a smaller set of local fixes which have to be verified anyway during major release upgrades.
Copy the whole repo is what I would do when I was learning Git, and I was fixin' to do something dangerous.
I'm considering it a bit different: system patches belong into the
offsite backup (they are required to get your site back at all) - and only the .git directories make about 2.5 GB compressed. My offsite backup used to live on a stick - now I have some cloud, but periodically moving such an amount through a weak dsl uplink is also not really what I like, given that it's mostly redundant.
But there seems to be a nicer approach. There is a file .git/config:
Code:
[...]
[branch "main"]
remote = origin
merge = refs/heads/main
[branch "releng/12.2"]
remote = origin
merge = refs/heads/releng/12.2
[branch "releng/10.2"]
remote = origin
merge = refs/heads/releng/10.2
[branch "local"]
remote = origin
merge = refs/heads/releng/12.2
[branch "local-at-10.2"]
remote = origin
merge = refs/heads/releng/10.2
Now just create a command from grouping this data
git bundle create Backupfile refs/heads/main..main refs/heads/releng/12.2..releng/12.2 refs/heads/releng/10.2..releng/10.2 refs/heads/releng/12.2..local refs/heads/releng/10.2..local-at-10.2
and this is the backup.
Welcome to a "real" SCM
Hehe!
BTW, is this a bug?
Code:
$ git log
commit 15d8ad6b102338f3674f4c145c543813353bfc55 (HEAD -> local)
$ git log | cat
commit 15d8ad6b102338f3674f4c145c543813353bfc55
Not only the annoying color is removed, the whole info is removed.