我的.gitignore有问题。
我希望它忽略“vendor /”目录,但它忽略具有该名称的所有目录。

以下是我的.gitignore:

.idea/
bin/
vendor/
composer.lock
composer.phar

以下是我的“git status”的结果:
Changes not staged for commit:
   (use "git add <file> ..." to update what will be submitted)
   (use "git checkout - <file> ..." to discard changes in working directory)

modified: .gitignore

Not monitored files:
   (use "git add <file> ..." to include what will be submitted)

src/vendor/
tests/src/
vendor/

它还忽略了“src / vendor”,我不希望这种情况发生,我希望它忽略“vendor /”

最佳答案

从文档for Git Ignore



尝试将vendor/更改为/vendor/

关于git - .gitignore正在忽略具有相同名称的其他目录,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26327673/

10-12 18:52