Pretty sure I'm misunderstanding git.
My goal
- I have a private repo on github with a "master" branch.
- I would like to also have a production branch, which I will push all my changes from master to.
- I would then like to connect it to Azure and tell Azure to automatically deploy from the production branch.
Question
How do I best accomplish this? Initially I was thinking it was with "git push", but I believe that's for remote repositories, and so I'm now wondering what the best practice is to merge the "master" branch to the "production" branch.
Or, am I thinking about the whole thing wrong?
Thanks -- looking forward to putting my Subversion days behind me.