I m trying to push a repository to github.com . After following their instructions
touch README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/VihaanVerma89/RandomSolutions.git
git push -u origin master
I see that my project bin and src folder are empty on github , a similar problem solved this issue by
git add .
However after following this advice I still see that some files are not getting staged for commit. gitk shows Local uncommited changes, not checked to index (check the last image).





git add .should work...what happens if you dogit reset HEAD && git add .? (Make sure you don't include the--hardoption when you reset)git add .andgit status(e.g. building)?