I clone my repository with:
git clone ssh://xxxxx/xx.git
But after I change some files and add and commit them,
add
commit
I had the same problem. I did it by the following steps:
1. git commit -m 'message' 2. git config --global user.email "your mail" 3. git config --global user.name "name" 4. git commit -m 'message' 5. git push -u origin master