InterviewSolution
Saved Bookmarks
| 1. |
What is the functionality of “git cherry-pick” command? |
|
Answer» This command is used to INTRODUCE certain commits from one branch ONTO ANOTHER branch within the repository. The most common use CASE is when we want to forward- or back-port commits from the MAINTENANCE branch to the development branch. |
|