Checkout tag, cherry pick commits, create new release
July 8, 2022
git checkout -b <new branch name> <tag name>
git cherry-pick <commit_message>
# fix conflicts
git cherry-pick --continue
July 8, 2022
git checkout -b <new branch name> <tag name>
git cherry-pick <commit_message>
# fix conflicts
git cherry-pick --continue