Git Branches

What are Git Branches?

A branch allows you to create a separate development path.

  • You can commit all your things to the branch and then merge the branch with your master.

  • Creates one branch with a clear view.

  • Branches can be added, deleted and merged.

How to use Git Branches

You can create separate development paths that do not have to be mixed together, like for separate different end goals.

A separate branch for each stage of development:

  • Release

  • Development

  • Fixes

  • Master

Commits can do a lot of things, but with branches you can expand your project to a whole new level.