我已设置git
我的项目以将修改推送到gitlab repository
.
我安装了一个插件,github
其中位于/vendor/dereuromar/cakephp-queue
插件目录中还有一个.git
目录和其他相关文件git
当我将我的项目推送到 时gitlab
,除此目录之外的所有内容都会推送。
尝试git status
时会出现错误
On branch master
Your branch is up-to-date with 'origin/master'.
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
(commit or discard the untracked or modified content in submodules)
modified: vendor/dereuromark/cakephp-queue (modified content, untracked content)
no changes added to commit (use "git add" and/or "git commit -a")
我尝试从. .git
_.gitignore
.gitattributes
vendor/dereuromark/cakephp-queue
的输出git status
是
On branch master
Your branch is up-to-date with 'origin/master'.
nothing to commit, working directory clean
但该目录的内容并未上传到gitlab
.
如何推送此目录的内容?我还没有创建任何submodule
.