Git Flow Basics
July 18, 2020•112 words
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