Command
git mergeExplanation
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 featureCreate merge commit even if fast-forward possible
git merge --no-ff featureMore
Rebase Branch
git
Reapply commits on top of another base tip
Manage Worktrees
git
Manage multiple working trees linked to a single Git repository for simultaneous development across branches
Pull from Remote
git
Download and integrate changes from a remote repository into your current local branch, combining fetch and merge in one command