无法将所有文件添加到通过作曲家下载的git



我正在使用Drupal中的imgix模块,该模块取决于作曲家。当我运行命令drush composer-manage install时,我可以在供应商目录中下载imgix-php(IMGIX库(。我已经正确设置了所有内容,并且在我的本地主机中效果很好。现在,我想将它们推入Github。我可以看到git中没有添加 imgix-php的文件,并且在 github中是emty。然后,我看到imgix-php中有一个文件.gitignore,其中写了vendor。但是,我已经评论了。但无法添加imgix-php的任何文件。如果我评论了.gitignorevendor行并检查状态,则显示我为:

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 

相关内容

  • 没有找到相关文章

最新更新