Complete the command to copy a specific commit from another branch.
git cherry-pick [1]The git cherry-pick command copies a specific commit identified by its commit hash from another branch into your current branch.
Complete the sentence: Cherry-pick is useful when you want to {{BLANK_1}} a commit without merging the whole branch.
Cherry-pick is useful when you want to [1] a commit without merging the whole branch.Cherry-pick lets you copy a specific commit from another branch without merging all changes from that branch.
Fix the error in the command to cherry-pick commit abc123.
git cherry-pick [1]The correct way to cherry-pick is by specifying the commit hash, like abc123.
Fill both blanks to create a new branch and cherry-pick a commit.
git checkout -b [1] && git cherry-pick [2]
This command creates a new branch called feature-fix and then cherry-picks the commit abc123 onto it.
Fill all three blanks to cherry-pick multiple commits in sequence.
git cherry-pick [1] [2] [3]
This command cherry-picks three commits abc123, def456, and 789ghi in order onto the current branch.