I just set up an Azure website and am trying to push with git from an existing repository. So I ran
git push azure master
and things sort of worked. A lot of files got pushed, but I think they came from origin master
, whereas I would like to push changes from the branch I'm working on origin web-zach
. Since I'm not sure how Azure works, I would like to push to the azure master
branch and not the azure web-zach
branch.
I'm wondering if there's a simple command I'm missing here? Something maybe like (this is certainly wrong)
git push azure master --otherBranch origin web-zach
I'm also not sure if I'm experiencing expected behavior here or if Azure (and Node/Kudu) are messing something up. git push azure master
also seems to run some deployment scripts, so it does seem a little weird.