To return to github, there is no real command in git-flow: git push origin develop if you just touched the development branch and git push origin master if you also touched the main branch. (I started using the branch name according to git 2.0, the default behavior of git push will change so as not to push the whole branch when you press git)
If you are working with a development team, you always need to pull it out of the central repo before you start working, as others could make changes and you donโt have them. You can do this manually or use the git thread flag.
If you run the new function:
git flow feature start -F foo
This will allow you to get the development branch and checks if your branch corresponds to the remote branch, if it does not work, and you need to make sure that they exist.
It's important to know the basics of git before you start using git -flow.
I also suggest reading Distributed git - Distributed Workflows
Peter van der Does
source share