将文件上传到Gitlab,但显示为子项目

时间:2017-05-17 22:48:05

标签: gitlab git-commit git-add

我尝试将文件夹the_one_simulator上传到Gitlab,但该文件夹作为子项目上传,如下所示。

enter image description here

the_one_simulator最初是Bitbucket的存储库。我刚将其复制到nc_ptn,并在nc_ptn/下运行以下命令。

git add .
git commit -m "Add the ONE simulator"
git push -u origin master

如何将the_one_simulator下的所有文件上传到Gitlab?

我删除了the_one_simulator/.git/,并尝试了git add .,但遇到了以下问题,

$ git add .
Assertion failed: (item->nowildcard_len <= item->len && item->prefix <= item->len), function prefix_pathspec, file pathspec.c, line 317.
Abort trap: 6

1 个答案:

答案 0 :(得分:0)

在SO上有一个类似的问题gyim奇妙地回答了这个问题。在https://stackoverflow.com/a/1789374/5385187查看他们的答案。这应该为您提供使子模块成为常规目录并将文件提交到顶级存储库所需的所有信息。