git add。不包括所有目录内容。

时间:2013-05-28 21:43:34

标签: git git-commit

我正在尝试将存储库推送到github.com。遵循他们的指示后

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

我看到我的项目bin和src文件夹在github上是空的,类似的problem解决了这个问题

git add .

然而,在遵循这个建议后,我仍然看到一些文件没有上传提交。 gitk显示本地未经修改的更改,未检查索引(检查最后一个图像)。 enter image description here

enter image description here

enter image description here

enter image description here

enter image description here

1 个答案:

答案 0 :(得分:2)

在github中第一次提交的屏幕截图中,git将binsrc作为子模块进行跟踪。

也就是说,当您添加所有文件时,.gitbin中有src个目录。因此,解决问题的最简单方法是删除除根目录之外的所有.git目录。