Warm tip: This article is reproduced from serverfault.com, please click

git-Github没有检测到新文件夹

(git - Github doesn't detect new folder)

发布于 2014-01-08 21:32:28

我正在使用将github客户端连接到远程bitbuckket git的Windows 8笔记本电脑。我最近建立了网站localhost / WEBSITENAME / mobile的移动版本

现已在loaclhost / WEBSITENAME / mobile中使用localhost / WEBSITENAME

现在github无法检测到新的移动文件夹,因此我无法推送我的移动文件。任何帮助都将非常有用,因为我还有另一个开发人员在等待这些文件。

Questioner
Dustin Snider
Viewed
0
meda 2014-01-11 04:10:10

如果你的目录结构如下所示:

/------WebsiteName/
        |
        |-----------/Mobile/

然后确保你在WebsiteName目录中,然后运行 git status

如果仍然遇到相同的错误,请按顺序运行以下命令:

git init
git status //here you should see the mobile folder and its files
git add --all
git commit -am "committing"
git push --all