Skip to content

Instantly share code, notes, and snippets.

@towens
Last active April 12, 2016 22:44

Revisions

  1. towens revised this gist Apr 12, 2016. 1 changed file with 3 additions and 1 deletion.
    4 changes: 3 additions & 1 deletion .gitignore_global
    Original file line number Diff line number Diff line change
    @@ -66,4 +66,6 @@ __pycache__/
    # Intellij #
    # ######################
    .idea
    *.iml
    *.iml

    .swp
  2. towens revised this gist Feb 9, 2016. 1 changed file with 1 addition and 14 deletions.
    15 changes: 1 addition & 14 deletions .gitignore_global
    Original file line number Diff line number Diff line change
    @@ -66,17 +66,4 @@ __pycache__/
    # Intellij #
    # ######################
    .idea

    # from https://github.com/github/gitignore/blob/master/Global/JetBrains.gitignore #

    # 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
    *.iml
  3. towens revised this gist Feb 8, 2016. 1 changed file with 18 additions and 0 deletions.
    18 changes: 18 additions & 0 deletions .gitignore_global
    Original file line number Diff line number Diff line change
    @@ -62,3 +62,21 @@ Temporary Items
    # python
    __pycache__/
    *.py[cod]

    # Intellij #
    # ######################
    .idea

    # from https://github.com/github/gitignore/blob/master/Global/JetBrains.gitignore #

    # 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
  4. towens created this gist Feb 4, 2016.
    64 changes: 64 additions & 0 deletions .gitignore_global
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,64 @@
    # 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
    *.zip

    # Logs and databases #
    # ######################
    *.log
    *.sql
    *.sqlite

    # OS generated files #
    # ######################
    .DS_Store
    .DS_Store?
    ._*
    .Spotlight-V100
    .Trashes
    ehthumbs.db
    Thumbs.db
    .AppleDouble
    .LSOverride
    .DocumentRevisions-V100
    .fseventsd
    .TemporaryItems
    .Trashes
    .VolumeIcon.icns

    # Icon must end with two \r
    Icon

    # Thumbnails
    ._*

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

    # vagrant
    .vagrant

    # python
    __pycache__/
    *.py[cod]