1

我在依赖作曲家的drupal中使用imgix模块。当我运行 commanddrush composer-manage install时,我可以看到imgix-php(imgix 库)已下载到供应商目录中。我已经正确设置了所有内容,并且在我的本地主机中运行良好。现在我想把它们推到 github 上。我可以看到imgix-phpgit 中没有添加任何文件,它在github. 然后我看到有一个文件写.gitignoreimgix-php哪里vendor。但是,我已经将其注释掉了。但无法添加任何imgix-php. 如果我注释掉行vendor.gitignore检查状态,它会显示为:

On branch staging
Your branch is up-to-date with 'origin/staging'.
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:   sites/all/vendor/imgix/imgix-php (modified content)

no changes added to commit (use "git add" and/or "git commit -a")

可以告诉我为什么我不能添加它们。

4

1 回答 1

0

在评论 .gitignore 文件后,您是否真的添加了 imgix-php 文件,使用

git add /path/to/folder/* 

或者

git add --all /path/to/folder 

?

于 2017-07-15T17:51:46.290 回答