What does that mean? Isn't git flow just a branching model?
git flow init = git init; git branch develop; git checkout develop; ```
``` git flow feature start add login page = git branch develop feature/add-login-page; git checkout feature/add-login-page; ```
``` git flow feature finish = git checkout develop; git merge develop feature/add-login-page; git branch -d feature/add-login-page; ```
git flow init = git init; git branch develop; git checkout develop; ```
``` git flow feature start add login page = git branch develop feature/add-login-page; git checkout feature/add-login-page; ```
``` git flow feature finish = git checkout develop; git merge develop feature/add-login-page; git branch -d feature/add-login-page; ```