Skip to content

Instantly share code, notes, and snippets.

@MasterOdin
Last active August 29, 2015 14:09
Show Gist options
  • Select an option

  • Save MasterOdin/654b3e3f7ff346f1bc8d to your computer and use it in GitHub Desktop.

Select an option

Save MasterOdin/654b3e3f7ff346f1bc8d to your computer and use it in GitHub Desktop.

Revisions

  1. MasterOdin revised this gist Nov 17, 2014. 1 changed file with 66 additions and 68 deletions.
    134 changes: 66 additions & 68 deletions .gitignore
    Original file line number Diff line number Diff line change
    @@ -1,10 +1,56 @@
    ################
    # JETBRAINS
    ################
    #==================
    # OS X #
    #==================
    .DS_Store
    .AppleDouble
    .LSOverride

    # Icon must end with two \r
    Icon

    # Thumbnails
    ._*

    # Files that might appear on external disk
    .Spotlight-V100
    .Trashes

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

    #==================
    # WINDOWS #
    #==================

    ## Directory-based project format:
    # Windows image file caches
    Thumbs.db
    ehthumbs.db

    # Folder config file
    Desktop.ini

    # Recycle Bin used on file shares
    $RECYCLE.BIN/

    # Windows Installer files
    *.cab
    *.msi
    *.msm
    *.msp

    # Windows shortcuts
    *.lnk

    #==================
    # JETBRAINS #
    #==================

    # Directory-based project format:
    .idea/
    # if you remove the above rule, at least ignore the following:

    # User-specific stuff:
    # .idea/workspace.xml
    @@ -25,12 +71,11 @@
    # Mongo Explorer plugin:
    # .idea/mongoSettings.xml

    ## File-based project format:
    # File-based project format:
    *.ipr
    *.iws

    ## Plugin-specific files:

    # Plugin-specific files:
    # IntelliJ
    out/

    @@ -45,33 +90,9 @@ com_crashlytics_export_strings.xml
    crashlytics.properties
    crashlytics-build.properties

    ################
    # OS X
    ################
    .DS_Store
    .AppleDouble
    .LSOverride

    # Icon must end with two \r
    Icon

    # Thumbnails
    ._*

    # Files that might appear on external disk
    .Spotlight-V100
    .Trashes

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

    ################
    # SUBLIME TEXT
    ################
    #==================
    # SUBLIME TEXT #
    #==================

    # cache files for sublime text
    *.tmlanguage.cache
    @@ -88,46 +109,23 @@ Temporary Items
    # sftp configuration file
    sftp-config.json

    ################
    # NOTEPAD++
    ################
    #==================
    # NOTEPAD++ #
    #==================

    # Notepad++ backups #
    *.bak

    ################
    # NINJA
    ################
    #==================
    # NINJA #
    #==================

    .ninja_deps
    .ninja_log

    ################
    # WINDOWS
    ################

    # Windows image file caches
    Thumbs.db
    ehthumbs.db

    # Folder config file
    Desktop.ini

    # Recycle Bin used on file shares
    $RECYCLE.BIN/

    # Windows Installer files
    *.cab
    *.msi
    *.msm
    *.msp

    # Windows shortcuts
    *.lnk

    ################
    # MISC
    ################
    #==================
    # Miscellaneous #
    #==================

    *.zip
    *.swp
    *.swp
  2. MasterOdin revised this gist Nov 15, 2014. 1 changed file with 31 additions and 6 deletions.
    37 changes: 31 additions & 6 deletions .gitignore
    Original file line number Diff line number Diff line change
    @@ -1,6 +1,6 @@
    # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm

    *.iml
    ################
    # JETBRAINS
    ################

    ## Directory-based project format:
    .idea/
    @@ -45,14 +45,16 @@ com_crashlytics_export_strings.xml
    crashlytics.properties
    crashlytics-build.properties

    ################
    # OS X
    ################
    .DS_Store
    .AppleDouble
    .LSOverride

    # Icon must end with two \r
    Icon


    # Thumbnails
    ._*

    @@ -67,6 +69,10 @@ Network Trash Folder
    Temporary Items
    .apdisk

    ################
    # SUBLIME TEXT
    ################

    # cache files for sublime text
    *.tmlanguage.cache
    *.tmPreferences.cache
    @@ -77,17 +83,29 @@ Temporary Items

    # project files should be checked into the repository, unless a significant
    # proportion of contributors will probably not be using SublimeText
    # *.sublime-project
    *.sublime-project

    # sftp configuration file
    sftp-config.json

    ################
    # NOTEPAD++
    ################

    # Notepad++ backups #
    *.bak

    ################
    # NINJA
    ################

    .ninja_deps
    .ninja_log

    ################
    # WINDOWS
    ################

    # Windows image file caches
    Thumbs.db
    ehthumbs.db
    @@ -105,4 +123,11 @@ $RECYCLE.BIN/
    *.msp

    # Windows shortcuts
    *.lnk
    *.lnk

    ################
    # MISC
    ################

    *.zip
    *.swp
  3. MasterOdin created this gist Nov 15, 2014.
    108 changes: 108 additions & 0 deletions .gitignore
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,108 @@
    # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm

    *.iml

    ## Directory-based project format:
    .idea/
    # if you remove the above rule, at least ignore the following:

    # User-specific stuff:
    # .idea/workspace.xml
    # .idea/tasks.xml
    # .idea/dictionaries

    # Sensitive or high-churn files:
    # .idea/dataSources.ids
    # .idea/dataSources.xml
    # .idea/sqlDataSources.xml
    # .idea/dynamic.xml
    # .idea/uiDesigner.xml

    # Gradle:
    # .idea/gradle.xml
    # .idea/libraries

    # Mongo Explorer plugin:
    # .idea/mongoSettings.xml

    ## File-based project format:
    *.ipr
    *.iws

    ## Plugin-specific files:

    # IntelliJ
    out/

    # mpeltonen/sbt-idea plugin
    .idea_modules/

    # JIRA plugin
    atlassian-ide-plugin.xml

    # Crashlytics plugin (for Android Studio and IntelliJ)
    com_crashlytics_export_strings.xml
    crashlytics.properties
    crashlytics-build.properties

    .DS_Store
    .AppleDouble
    .LSOverride

    # Icon must end with two \r
    Icon


    # Thumbnails
    ._*

    # Files that might appear on external disk
    .Spotlight-V100
    .Trashes

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

    # cache files for sublime text
    *.tmlanguage.cache
    *.tmPreferences.cache
    *.stTheme.cache

    # workspace files are user-specific
    *.sublime-workspace

    # project files should be checked into the repository, unless a significant
    # proportion of contributors will probably not be using SublimeText
    # *.sublime-project

    # sftp configuration file
    sftp-config.json

    # Notepad++ backups #
    *.bak

    .ninja_deps
    .ninja_log

    # Windows image file caches
    Thumbs.db
    ehthumbs.db

    # Folder config file
    Desktop.ini

    # Recycle Bin used on file shares
    $RECYCLE.BIN/

    # Windows Installer files
    *.cab
    *.msi
    *.msm
    *.msp

    # Windows shortcuts
    *.lnk