We are used to have a development branch called dev, in Gitflow toolset it is called develop.
https://github.com/petervanderdoes/gitflow-avh
Is there a way to tell Gitflow that we want to use a branch called dev?
Thanks
We are used to have a development branch called dev, in Gitflow toolset it is called develop.
https://github.com/petervanderdoes/gitflow-avh
Is there a way to tell Gitflow that we want to use a branch called dev?
Thanks
Rename the branch in Git
git branch -m develop dev
Update gitflow config
git config gitflow.branch.develop dev