Make sure all branches you wish to push are selected and checked
Click the Push button
Demo Video The following is a video on how this is being done. Read the how-to guide before watching the video for actual steps to do it
Console Commands Used
git add [-A] "file" # Adds files to commit
git commit -m "Message" # Commits
# -f forces the push and should only be done if all else fails
git push [-f] # Just push commits
git push [-f] origin "branch name" # Push a specific branch name (replace origin with your remote)