Gitflow – Animated in React
veerasundar.com
Gitflow – Animated in React
1–3 of 3 posts
Re: Gitflow – Animated in React
#2Thanks! A command log would be really helpful too.
The HubFlow docs contain GitFlow docs and some really helpful diagrams: https://datasift.github.io/gitflow/IntroducingGitFlow.html
I change the release prefix to 'v' so that the git tags for the release look like 'v0.0.1' and 'v0.1.0':
git config --replace-all gitflow.prefix.versiontag v
git config --replace-all hubflow.prefix.versiontag v
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.Re: Gitflow – Animated in React
#3Thanks! A command log would be really helpful too. The HubFlow docs contain GitFlow docs and some really helpful diagrams: https://datasift.github.io/gitflow/IntroducingGitFlow.html I change the release prefix to 'v' so that the git tags for the release look like 'v0.0.1' and 'v0.1.0': git config --replace-all gitflow.prefix.versiontag v git config --replace-all hubflow.prefix.versiontag v I usually use HubFlow inste…
Sure.. will add the command log