Sublime Text 4200 (macOS 15.5) is showing sub-folders of a Git repo as untracked despite .gitignore set to ignore all sub-folders. In the attached screenshot you can see the sidebar circles indicating untracked files/folders (see hover text). The .gitignore for this repo contains **/
(ignore all sub-folders pattern). This appears to have started with version 4200 (previous builds worked as expected).
fwiw: a fix for this is to use */
rather than **/
in .gitignore, but that may not work depending on the nesting/recursion needed for the repo.
also note: Git itself does not see these sub-folders and their contents as untracked. That is to say: the working tree is clean. It is just ST’s sidebar that sees these files/folders as untracked.