If you're trying to push a git repo to GitHub and run into the following error:
! [rejected] master -> master (non-fast forward) error: failed to push some refs to 'git@github.com:me/project_name.git'
There's an easy fix! Just run:
git pull origin master
And you should be good to go!



