Directories are maked as part of git project but that shouldn't be

Hi there!

I put my ~/.bashrc into a git repository. I activated the git plugin in Dolphin to more easily manage that git stuff.

I created a .gitignore to ignore everything in my home directory (except the .bashrc and .gitignore):

# Ignore everything
*
# Ignore sub directories
**/

Dolphin still shows a green checkmark symbol on top of all directories and all sub directory icons. They are not part of the git repo.

Why? Is there anything else I have to configure?

You can see the command dolphin uses:

git status --porcelain -u -z --ignored

Ignored files are supposed to appear with ! prefix.

Perhaps that’s because your git path is $HOME ?
Not sure.