So this is a bit weird. I'm working on a Git repository, and everything is fine. Until I added a folder named "tests" to the repository using git add .. I noticed that no files were added like Git used to do.
So I pushed to Github to check if files where actually added or not, because "test" is figuring out in my "git status" log (but none of "tests" files).
I got a weird green icon, and this is the first time that I stumble across it. You can see the icon in the github repository.
The commit log shows the following
+Subproject commit 70b4cc379d0e1e749085ec1b3aaa0dd1cd0fc9b7
So what does the icon mean and what did exactly happen?
Edit: I didn't add a submodule, and if there is one, there should have been a ".gitmodules" file created to track them. My guess is that Git got confused even though it shouldn't.
The cure was simple
git rm tests --cached
git add tests
git commit -m "fixed!"