When I have a release imminent I leave the version intact in git and checkout a new branch for future work.
There are times when I know there will be file conflicts as I'll need to make edits (reason A) in the current (release) version and in the forward looking branch (reason B).
Is thee anyway of telling git that the changes I just made to a file (reason A) in the version release can be applied (moved. copied, fast-fowarded) to the same file in the new branch? (and of course merged with the reason B changes)
I wish to subsequently make changes to the file in the branch (reason C now) and not have yet another conflict to address come merge time. (Especially for trivial edits).