git push from local branch to remote 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