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
Copy your Stencil project
Section titled “Copy your Stencil project”find ~/projects/ -name "*:Zone.Identifier" -type f -delete
Add to .gitignore to prevent committing them
Section titled “Add to .gitignore to prevent committing them”echo "*.zone.identifier" >> ~/.gitignore_global
git config --global core.excludesfile ~/.gitignore_global