这种文件没法点击。
是因为在这个文件里边还存在着其他的git,也就是 .git文件
导致使用本地 git status 的时候检测不到这个文件的变化
git rm -r --cached . // 从.git/index中删除所有变更过的文件
最后再正常提交
git add .
git commit -m "Initial commit"
git push origin master