xxxxxxxxxx
# push any desired branch to remote
git push -u origin local_branch_name:remote_branch_name
xxxxxxxxxx
# Create a new branch
git branch new-branch
git checkout new-branch
# Make your changes to the code
# Add and commit your changes
git add .
git commit -m "Commit message"
# Push the changes to the new branch
git push origin new-branch