git make changes to remote branch code example
Example 1: delete remote git branch
git push --delete remoteName branchName
Example 2: git push to branch
# If its your first push
git push -u origin BRANCH
# Otherwise
git push origin BRANCH
Example 3: how to make a new branch git
$ git checkout -b [name_of_your_new_branch]
Example 4: push a new branch
git push -u origin <branch-name>