我正在尝试向GitHub上的master分支添加一个分支,并将文件夹推送到该分支。
分支的文件夹结构类似于-SocialApp / SourceCode / DevTrunk / SocialApp,所有源代码文件位于最后一个文件夹中。
我正在使用以下Git命令:
git add *
git commit -m with the message
git push
这仅将第一个文件夹“ SocialApp”推送到GitHub上,而忽略了该文件夹内的文件夹SourceCode。我该如何解决?
This is pushing only the first folder
-git根本不关心文件夹,只关心文件。请显示提交-您已经提交了子模块,符号链接或不是文件夹的其他文件
.gitignore
吗?