I have only one branch. For a few months I have been using
git push origin master
to commit to my local repository. Last night after I made
I solved the 22 error as follows: In the "git clone" command I did NOT supply the user:password. The clone worked, but not the push. Solution for the 22 error: Modify .git/config the url like this: url=http://user:pwd@host/... Then, the push worked.