InterviewSolution
Saved Bookmarks
| 1. |
Git Merge |
|
Answer» Git merge is a command that allows you to merge branches from Git. It preserves the complete history and chronological order and maintains the context of the branch. The following image demonstrates how we can create different features by branching from the main branch and how we can merge the newly created features after the final review to the main branch. The command git merge is used to merge the branches. Command : git merge <branch_name> |
|