Thanks! A command log would be really helpful too.<p>The HubFlow docs contain GitFlow docs and some really helpful diagrams: <a href="https://datasift.github.io/gitflow/IntroducingGitFlow.html" rel="nofollow">https://datasift.github.io/gitflow/IntroducingGitFlow.html</a><p>I change the release prefix to 'v' so that the git tags for the release look like 'v0.0.1' and 'v0.1.0':<p><pre><code> git config --replace-all gitflow.prefix.versiontag v
git config --replace-all hubflow.prefix.versiontag v
</code></pre>
I usually use HubFlow instead of GitFlow because it requires there to be a Pull Request; though GitFlow does work when offline / without access to GitHub.