culTest

    One of the 100 questions in this topic

    How much do you know about Git and Version Control?

    Which command is used to perform a cherry-pick?

    Answers

    git pick
    git cherry
    git cherry-pickCorrect
    git select

    The git cherry-pick command followed by a commit hash is used to apply the changes from that specific commit to the current branch. Git creates a new commit with the same changes but a different hash.