Just go with:
$ git cherry-pick another_branch
This will cherry-pick the last commit from another_branch.
Branches in git are just references to the last commit in that branch, you can use them instead of commit SHAs in your commands.
Just go with:
$ git cherry-pick another_branch
This will cherry-pick the last commit from another_branch.
Branches in git are just references to the last commit in that branch, you can use them instead of commit SHAs in your commands.