#Are we sure the `.gitignore` works? I
1 messages · Page 1 of 1 (latest)
If the .gitignore is already there but the files aren't ignored, you'll have to git rm them to get them out of git still, since they were probably added before the .gitignore existed. The CLI should git rm --cached ignored files as it adds them to .gitignore, but it only does that if they're not already in .gitignore, so you could also try removing the entries from .gitignore and running dagger mod sync to see that's working properly.