I clone my repository with:
git clone ssh://xxxxx/xx.git
But after I change some files and add and commit them,
add
commit
To fix it, re-initialize and follow the proper code sequence:
git init git add . git commit -m 'message' git push -u origin master