I just made a new repository on github. Starting with a folder full of files, the steps I did were:
git init git add -A git remote add origin ... #Now pull
Since you never committed the files, no sorry. The steps you need to take are:
git init git add . git commit -m 'Initial commit' git remote add origin ... git push origin master
Remember, when in doubt, always commit. As long as you do that, you can always undo stuff with git.