I have used git cherry-pick to push a commit from branch a to branch b .
git checkout branch b
git cherry-pick commit-hash
Which worked fine but I couldn't find a way to update the push comment. Whatever comment was provided earlier for branch a same is reflecting for branch b as well. Is there a way I can modify push comment before actually pushing the commit to my origin branch?