Created
October 28, 2022 06:44
-
-
Save rscircus/16a44e0ff68e1fdff74e689c5d0b4fa8 to your computer and use it in GitHub Desktop.
Reasonable Syncthing Ignore Patterns
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ╔═══════════════════════════════════╗ | |
// ║ CHECK IT AGAIN BEFORE YOU USE IT! ║ | |
// ╚═══════════════════════════════════╝ | |
// ╔══════════════════════════════════╗ | |
// ║ Operating system generated files ║ | |
// ╚══════════════════════════════════╝ | |
// ┌─────────────┐ | |
// │ Apple macOS │ | |
// └─────────────┘ | |
(?d).DS_Store | |
(?d).localized | |
(?d)._* | |
(?d).Icon* | |
(?d).fseventsd | |
(?d).Spotlight-V100 | |
(?d).DocumentRevisions-V100 | |
(?d).TemporaryItems | |
(?d).Trashes | |
(?d).Trash-1000 | |
(?d).iCloud | |
// ┌──────────────────┐ | |
// │ GNU/Linux & UN*X │ | |
// └──────────────────┘ | |
(?d).directory | |
(?d).Trash-* | |
// ┌───────────────────┐ | |
// │ Microsoft Windows │ | |
// └───────────────────┘ | |
(?d)desktop.ini | |
(?d)ehthumbs.db | |
(?d)Thumbs.db | |
(?d)$RECYCLE.BIN | |
(?d)System Volume Information | |
// ┌──────────┐ | |
// │ QNAP QTS │ | |
// └──────────┘ | |
(?d).AppleDB | |
(?d).@_thumb | |
(?d).@__thumb | |
// ┌──────────────┐ | |
// │ Synology DSM │ | |
// └──────────────┘ | |
(?d)@eaDir | |
// ╔═════════════════════════════╗ | |
// ║ Application generated files ║ | |
// ╚═════════════════════════════╝ | |
// ┌─────────────────┐ | |
// │ Adobe Lightroom │ | |
// └─────────────────┘ | |
*Previews.lrdata root-pixels.db | |
// ┌─────────┐ | |
// │ Dropbox │ | |
// └─────────┘ | |
.dropbox | |
.dropbox.attr | |
// ┌────────────────────────┐ | |
// │ Firefox & Chrom(ium│e) │ | |
// └────────────────────────┘ | |
*.part | |
*.crdownload | |
// ┌──────────────────┐ | |
// │ Microsoft Office │ | |
// └──────────────────┘ | |
~* | |
// ┌───────────────────────────┐ | |
// │ Parallels Desktop for Mac │ | |
// └───────────────────────────┘ | |
.parallels-vm-directory | |
// ┌──────────────┐ | |
// │ Resilio Sync │ | |
// └──────────────┘ | |
.sync | |
*.bts | |
*.!Sync | |
.SyncID | |
.SyncIgnore | |
.SyncArchive | |
*.SyncPart | |
*.SyncTemp | |
*.SyncOld | |
// ┌────────────────────────────┐ | |
// │ Temporary and backup files │ | |
// └────────────────────────────┘ | |
*.temporary | |
*.tmp | |
*._mp | |
*.old | |
*.syd | |
*.dir | |
*.gid | |
*.chk | |
*.dmp | |
*.nch | |
.*.swp | |
*~ | |
// ┌─────┐ | |
// │ Vim │ | |
// └─────┘ | |
*.*.sw[a-p] | |
// ┌─────┐ | |
// │ Git │ | |
// └─────┘ | |
.git |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment