A note about git merge
Overview: git merge is a command that lets you take the independent lines of development created by git branch and integrate them into a single branch. When you merge two branches, Git tries to automatically join the diverged paths of development. For the purpose of this explanation: The branch you want to merge from is called the source branch. The branch you want to merge into is called the target branch.
Stefan Marx | notes