Delete Zone.Identifier Files in WSL
Find all zone.identifier files in your projects
Section titled “Find all zone.identifier files in your projects”find ~/projects/ -name "*:Zone.Identifier" -type f
Delete all zone.identifier files in your projects
Section titled “Delete all zone.identifier files in your projects”find ~/projects/ -name "*:Zone.Identifier" -type f -delete
Add to .gitignore to prevent committing them
Section titled “Add to .gitignore to prevent committing them”find ~/projects/ -name "*:Zone.Identifier" -type f -delete