I have local git repository and there are a .gitignore and .gitattributes files in the directory. my .svg files are being ignored by git but its not in the .gitignore file
this is my .gitignore file
# CakePHP specific files #
##########################
/config/app.php
/config/.env
/logs/*
/tmp/*
/vendor/*
# OS generated files #
######################
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
Icon?
ehthumbs.db
Thumbs.db
# Tool specific files #
#######################
# vim
*~
*.swp
*.swo
# sublime text & textmate
*.sublime-*
*.stTheme.cache
*.tmlanguage.cache
*.tmPreferences.cache
# Eclipse
.settings/*
# JetBrains, aka PHPStorm, IntelliJ IDEA
.idea/*
# NetBeans
nbproject/*
# Visual Studio Code
.vscode
# Sass preprocessor
.sass-cache/
.phpstorm.meta.php/*
.github
i used this command to show me the ignoed files
git status --ignored
and this is the result:
.github/
.idea/
.phpstorm.meta.php/
codealike.json
config/app.php
logs/
plugins/AdminView/
plugins/MetronicAdminView/
plugins/SiteView/webroot.zip
tmp/
vendor/
the folder plugins is where the .svg files are
but when I used git check-ignore **/ -v
to see where I ignored this the folder plugin doesn't show at all
.gitignore:5:/logs/* logs/
.gitignore:6:/tmp/* tmp/
.gitignore:7:/vendor/* vendor/
how can I find where the problem is?