Skip to content

Commit

Permalink
chore: Update .gitignore for macOS-specific files
Browse files Browse the repository at this point in the history
- Added comprehensive rules for macOS-generated files and directories:
  - .DS_Store, .AppleDouble, .Spotlight-V100, .Trashes, etc.
  - Included iCloud-related files (*.icloud).
- Ensured better compatibility and cleanliness when using macOS environments.
  • Loading branch information
ruddyscent committed Nov 22, 2024
1 parent 0fd648c commit a1046ac
Showing 1 changed file with 34 additions and 2 deletions.
36 changes: 34 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -106,10 +106,42 @@ venv.bak/
# Pycharm
.idea/

*.DS_Store
### macOS ###
# General
.DS_Store
.AppleDouble
.LSOverride

# Icon must end with two \r
Icon


# Thumbnails
._*

# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk

### macOS Patch ###
# iCloud generated files
*.icloud

artifacts/
wandb/
mlruns/
outputs/
random_forest_dir/
multirun/
multirun/

0 comments on commit a1046ac

Please sign in to comment.