Command
git merge
Explanation
git merge is used to join two or more development histories together. It joins two or more development histories together.
Examples
Merge feature branch into current
git merge feature
Create merge commit even if fast-forward possible
git merge --no-ff feature