.gitignore (854B)
1 2 # Created by https://www.gitignore.io/api/git,macos 3 # Edit at https://www.gitignore.io/?templates=git,macos 4 5 ### Git ### 6 # Created by git for backups. To disable backups in Git: 7 # $ git config --global mergetool.keepBackup false 8 *.orig 9 10 # Created by git when using merge tools for conflicts 11 *.BACKUP.* 12 *.BASE.* 13 *.LOCAL.* 14 *.REMOTE.* 15 *_BACKUP_*.txt 16 *_BASE_*.txt 17 *_LOCAL_*.txt 18 *_REMOTE_*.txt 19 20 ### macOS ### 21 # General 22 .DS_Store 23 .AppleDouble 24 .LSOverride 25 26 # Icon must end with two \r 27 Icon 28 29 # Thumbnails 30 ._* 31 32 # Files that might appear in the root of a volume 33 .DocumentRevisions-V100 34 .fseventsd 35 .Spotlight-V100 36 .TemporaryItems 37 .Trashes 38 .VolumeIcon.icns 39 .com.apple.timemachine.donotpresent 40 41 # Directories potentially created on remote AFP share 42 .AppleDB 43 .AppleDesktop 44 Network Trash Folder 45 Temporary Items 46 .apdisk 47 48 # End of https://www.gitignore.io/api/git,macos