Skip to content

Instantly share code, notes, and snippets.

@puginabox
Created October 7, 2017 20:27
Show Gist options
  • Select an option

  • Save puginabox/caddab760966f20a2b412b77af6e5f7a to your computer and use it in GitHub Desktop.

Select an option

Save puginabox/caddab760966f20a2b412b77af6e5f7a to your computer and use it in GitHub Desktop.

Revisions

  1. puginabox created this gist Oct 7, 2017.
    75 changes: 75 additions & 0 deletions .gitignore
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,75 @@
    ######################
    #.gitignore template #
    ######################

    ###################
    # Custom
    www
    vendor
    js/lib
    .DS_Store
    .sass-cache

    # Ignore Node & Bower
    ###################
    node_modules
    bower_components
    build
    .tmp
    npm-debug.log

    # Ignore Test reporters
    ###################
    **/test/coverage
    report


    # mongo db
    ###################
    #Don't commit Mongo Database files
    *.lock
    *.0
    *.1
    *.ns
    journal


    # Compiled source #
    ###################
    *.com
    *.class
    *.dll
    *.exe
    *.o
    *.so

    # Packages #
    ############
    # it's better to unpack these files and commit the raw source
    # git has its own built in compression methods
    *.7z
    *.dmg
    *.gz
    *.iso
    *.jar
    *.rar
    *.tar
    *.xap
    *.zip

    # Logs and databases #
    ######################
    *.log
    *.sql
    *.sqlite
    # *.sdf
    *.mdf
    *.ldf

    # OS generated files #
    ######################
    .DS_Store*
    ehthumbs.db
    Icon?
    Thumbs.db