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 check the current status, git status.
git status
And follow these steps as well:
git init git add . git commit -m "message" git remote add origin "github.com/your_repo.git" git push -u origin master