culTest

    One of the 100 questions in this topic

    How much do you know about Git and Version Control?

    What is a cherry-pick in Git?

    Answers

    Selecting the best commits in a project
    Applying a specific commit from another branch to the current branchCorrect
    Choosing which files to include in a commit
    A method for resolving merge conflicts

    A cherry-pick in Git is the act of applying a specific commit from another branch to the current branch. It is useful when you need only one particular change from another branch without merging the entire branch.