git checkout branch-need-merge
git log --oneline
git checkout develop
git checkout -b feature/release
git cherry-pick commit-id-1
git cherry-pick commit-id-2
git fetch --all
git rebase -i origin/develop
git push -u origin feature/release
Last updated 4 months ago