I am trying to push my project to my github repository.After I pushed the files,there is one directory unclickable on the github.Then I cloned the project and found out that the files under the directory hadn't been pushed to the repository at all. I use the command below:
git init
git remote add origin <my project repo's link>
git add .
git commit -m "First initialize"
git push origin master
My repo's link:https://github.com/Honesty1997/root-project
I don't add .gitignore or something like this.