Merges a branch into the current branch.
git checkout <target-branch>
to switch to the branch into which you want to merge.git merge <source-branch>
to merge a branch into the current branch.git checkout <target-branch>
git merge <source-branch>
git checkout master
git merge patch-1 # Merges the `patch-1` branch into `master`
Would you like to help us improve 30 seconds of code?Take a quick survey
Git, Repository
Merges a branch into the current branch, creating a merge commit.
Git, Repository
Prints a list of all merged local branches.
Git, Repository
Deletes all local merged branches.