Skip to content

Latest commit

 

History

History
22 lines (13 loc) · 457 Bytes

03-Git-Merging-Branches.md

File metadata and controls

22 lines (13 loc) · 457 Bytes

Git Merging Branches

In this section, we will take a look at git merging braches

We can merge a branch with 'git merge' command

$ git checkout master
$ git merge feature/signup

Two types of merge that git can perform

  1. Fast forward merge

    ffb

  2. No-Fast Forward merge

    nfb