这是我的问题:我曾经将几个文件夹推入github.com,但其中两个是空的。当我尝试git status
时,它向我展示了
在分支 master 上
没有为提交暂存更改:
<使用“ git add<file>
...”更新将提交的内容>
<使用“ git --chackout<file>
...”丢弃工作 derictory 中的更改>
<提交或丢弃子模块中未跟踪或修改的内容>
修改:app/model(修改的内容)
修改:app/show(修改的内容)
没有添加到提交的更改(使用“ git add
”和/或“ git commit -a
”)
我的本地文件夹不是空的,只是在远程。如何将这些文件夹中的文件添加到远程仓库?
ps我试过git add -A .
了,,,,,git add -u
但它没有帮助。git add .
git submodule --recursive git add -A .
git submodule --recursive git commit -a -m "Initial commit"
谢谢你的帮助!