Subsections of Git
How to add commit from develop to release branch
Checkout release branch:
git checkout releases/1.2.3Create branch from release branch:
git checkout -b feature/my-branchCherry-pick commit from develop (-x will add info about source commit):
git cherry-pick -x commit-hash
git push --set-upstream origin feature/my-branchCreate PR from feature branch to release branch