It's a set of scripts he created for that workflow.
But to answer your question:
$ git checkout -b myFeature devCreates MyFeature branch off dev. Do your work and then
$ git commit -am "Your message"Now merge your changes to dev without a fast-forward
$ git checkout dev $ git merge --no-ff myFeature
Now push changes to the server
$ git push origin dev $ git push origin myFeatureRefs http://stackoverflow.com/questions/4470523/git-create-a-branch-from-another-branch
No comments :
Post a Comment