how to push your code to the develop branch in git code example
Example 1: push project to new branch git
git push -u origin branchName
Example 2: git link local branch to remote branch
git config remote.origin.fetch '+refs/heads/*:refs/remotes/origin/*'