Create git branch, and revert original to upstream state
Well the solution was pretty simple, hinted by Pat Notz and Bombe. #Make sure we’re on the master branch $ git checkout master # Make a new branch to hold the work I’ve done $ git branch old_master # Save this branch on my remote repo (for backup) $ git checkout old_master $ git push … Read more