git push origin master 在 github 中创建空目录

git push origin master creating empty directories in github

我已经将某些 git 集线器存储库克隆到我的笔记本电脑上。现在我想将这些本地目录推送到我的 github 。当我执行 "git push origin master" 时,一切都会顺利进行。但是如果我查看我的 github 存储库,我只能看到正在创建的空目录。所有目录都在同一目录下。 我执行的更新 github 的命令: git 添加 . git提交-m“” git 推源主

以下是我的 git 中心视图的快照:

我认为您还没有向存储库添加新文件

 1. git status
 2. git add -A
 3. git commit -am "your commit"
 4. git push origin master

试试这些我相信这会对你有所帮助

我执行了以下操作并且有效:

git rm --cached Retrofit2SampleApp

git rm --cached ud851-阳光

rm -rf Retrofit2SampleApp/.git

rm -rf ud851-阳光/.git

git 添加 Retrofit2SampleApp

git 添加ud851-阳光

git commit -m "commit after removing cache and .git inside the folders"

git push origin master

从以下 link 中得到了一些线索: Git - how to track untracked content?