I'm deploying my NodeJS app to azure app service (B1) using local git repository, how do I push from a branch other than master?
You could use git push azure <branch-name>:master
. If you've already checkout on the branch you want to push, use git push azure HEAD:master
. This command will push your current working commit to Azure.
git push aaa xxx:yyy
means push local branch xxx
to remote repository aaa
's yyy
branch.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With