how to push changes to a git branch in cmd code example
Example: git push to branch
# If its your first push
git push -u origin BRANCH
# Otherwise
git push origin BRANCH
# If its your first push
git push -u origin BRANCH
# Otherwise
git push origin BRANCH