conf

conf - my dotfiles manager
git clone git://git.alex.balgavy.eu/conf.git
Log | Files | Refs | README | LICENSE

.gitignore (901B)


      1 
      2 # Created by https://www.gitignore.io/api/macos,perl
      3 # Edit at https://www.gitignore.io/?templates=macos,perl
      4 
      5 ### macOS ###
      6 # General
      7 .DS_Store
      8 .AppleDouble
      9 .LSOverride
     10 
     11 # Icon must end with two \r
     12 Icon
     13 
     14 # Thumbnails
     15 ._*
     16 
     17 # Files that might appear in the root of a volume
     18 .DocumentRevisions-V100
     19 .fseventsd
     20 .Spotlight-V100
     21 .TemporaryItems
     22 .Trashes
     23 .VolumeIcon.icns
     24 .com.apple.timemachine.donotpresent
     25 
     26 # Directories potentially created on remote AFP share
     27 .AppleDB
     28 .AppleDesktop
     29 Network Trash Folder
     30 Temporary Items
     31 .apdisk
     32 
     33 ### Perl ###
     34 !Build/
     35 .last_cover_stats
     36 /META.yml
     37 /META.json
     38 /MYMETA.*
     39 *.o
     40 *.pm.tdy
     41 *.bs
     42 
     43 # Devel::Cover
     44 cover_db/
     45 
     46 # Devel::NYTProf
     47 nytprof.out
     48 
     49 # Dizt::Zilla
     50 /.build/
     51 
     52 # Module::Build
     53 _build/
     54 Build
     55 Build.bat
     56 
     57 # Module::Install
     58 inc/
     59 
     60 # ExtUtils::MakeMaker
     61 /blib/
     62 /_eumm/
     63 /*.gz
     64 /Makefile.old
     65 /MANIFEST.bak
     66 /pm_to_blib
     67 /*.zip
     68 
     69 # End of https://www.gitignore.io/api/macos,perl