86 lines
744 B
Plaintext
86 lines
744 B
Plaintext
# Media Slideshow - .gitignore
|
|
# Exclude all media files to avoid committing large binary files to the repository
|
|
|
|
# Image files
|
|
*.jpg
|
|
*.jpeg
|
|
*.JPG
|
|
*.JPEG
|
|
*.png
|
|
*.PNG
|
|
*.gif
|
|
*.GIF
|
|
*.webp
|
|
*.WEBP
|
|
*.avif
|
|
*.AVIF
|
|
*.heic
|
|
*.HEIC
|
|
*.heif
|
|
*.HEIF
|
|
*.bmp
|
|
*.BMP
|
|
*.tiff
|
|
*.TIFF
|
|
*.tif
|
|
*.TIF
|
|
*.svg
|
|
*.SVG
|
|
|
|
# Video files
|
|
*.mp4
|
|
*.MP4
|
|
*.mov
|
|
*.MOV
|
|
*.avi
|
|
*.AVI
|
|
*.mkv
|
|
*.MKV
|
|
*.webm
|
|
*.WEBM
|
|
*.m4v
|
|
*.M4V
|
|
*.wmv
|
|
*.WMV
|
|
*.flv
|
|
*.FLV
|
|
*.mpeg
|
|
*.MPEG
|
|
*.mpg
|
|
*.MPG
|
|
*.3gp
|
|
*.3GP
|
|
*.ogv
|
|
*.OGV
|
|
|
|
# Common media-related folders
|
|
src/
|
|
media/
|
|
images/
|
|
videos/
|
|
photos/
|
|
pictures/
|
|
|
|
# OS-specific files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
Desktop.ini
|
|
|
|
# Editor-specific files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.project
|
|
.settings/
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
*.log |