Git Flow Basics

test

Git-flow is a tool that works with Git and gives a standardize workflow to help working in projects with a team.

List Commands

git flow

Initialize Git Flow

git flow init

Start new feature

git flow feature start <feature name>

Finish up a feature

git flow feature finish <feature name>

Publish a feature

git flow feature publish <feature name>

Pull a existing feature

git flow feature pull origin <feature name>

If you are just starting with Git-Flow, I highly recommend reading Daniel Kummer's tutorial:
https://danielkummer.github.io/git-flow-cheatsheet/

Refs:

https://danielkummer.github.io/git-flow-cheatsheet/

https://github.com/nvie/gitflow

https://www.atlassian.com/git/tutorials/comparing-workflows/gitflow-workflow

https://github.com/arslanbilal/git-cheat-sheet

https://www.youtube.com/watch?v=BYrt6luynCI

Image: https://unsplash.com/photos/FWhTeWRCeis

More from Teo Oliver
All posts