how to push remote branch to master code example
Example 1: git new branch push to remote
git push -u origin <branch>
Example 2: push from branch to master
$ git push origin develop:master
git push -u origin <branch>
$ git push origin develop:master