I followed basic Git tutorial and added README file, which worked. Then I copied my project files to the same folder and tried to add them to repository by running
git add --all
git ci 'test' (my alias for commit)
git push origin master
and nothing got pushed.
What are the commands I should run to push my files to the remote repository (master)?
I tried to commit changes and run status but it says ‘nothing to commit’. It does not recognize, that I copied lots of new files to that folder..
OK, so I type: git add . (get no response from console)
then type to commit, and says no changes..
I had an issue with connected repository. What’s how I fixed:
I deleted manually .git folder under my project folder, run git init and then it all worked.