I clone my repository with:
git clone ssh://xxxxx/xx.git
But after I change some files and add
and commit
them,
In my case, I forgot to include the .gitignore
file. Here are all the steps required:
Launch a terminal, and in your project do the following commands:
git remote add origin YOUR/ORIGIN.git
git add .
git commit -m "initial commit or whatever message for first commit"
git push -u origin master