how to push to main code example
Example 1: pushing to github
git add .
git commit -m "First commit"
git push origin master
Example 2: push from branch to master
$ git push origin develop:master
git add .
git commit -m "First commit"
git push origin master
$ git push origin develop:master