I forgot to git pull my code before editing it; when I committed the new code and tried to push, I got the error "push is not possible".
git pull
At tha
You can use git stash to save the current repository before doing the commit you want to make (after merging the changes from the upstream repo with git stash pop). I had to do this yesterday when I had the same problem.
git stash
git stash pop