how to push changes to remote repo code example
Example: git push in a new branch
git checkout -b <branch>
git add .
git commit -m "comment"
git push -u origin <branch>
git checkout -b <branch>
git add .
git commit -m "comment"
git push -u origin <branch>