Create .gitignore files for your projects
# Select templates or add custom patterns
• .gitignore tells Git which files to ignore in your repository
• Prevents sensitive data (API keys, passwords) from being committed
• Excludes build artifacts, dependencies, and OS-specific files
• Each line is a pattern - use wildcards (*) for flexibility