我正在使用Drupal中的imgix模块,该模块取决于作曲家。当我运行命令drush composer-manage install
时,我可以在供应商目录中下载imgix-php
(IMGIX库(。我已经正确设置了所有内容,并且在我的本地主机中效果很好。现在,我想将它们推入Github。我可以看到git中没有添加 imgix-php
的文件,并且在 github
中是emty。然后,我看到imgix-php
中有一个文件.gitignore
,其中写了vendor
。但是,我已经评论了。但无法添加imgix-php
的任何文件。如果我评论了.gitignore
的vendor
行并检查状态,则显示我为:
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")
可以告诉我某人为什么我不能添加它们。
使用
评论.gitignore文件后,您是否真的添加了imgix-php文件git add /path/to/folder/*
或
git add --all /path/to/folder
?