Skip to content

Instantly share code, notes, and snippets.

@BjoernLudwigPTB
Forked from octocat/.gitignore
Last active September 13, 2019 13:57
Show Gist options
  • Save BjoernLudwigPTB/01f7e81ed8f5ae14a2b84b462470c4a6 to your computer and use it in GitHub Desktop.
Save BjoernLudwigPTB/01f7e81ed8f5ae14a2b84b462470c4a6 to your computer and use it in GitHub Desktop.

Revisions

  1. BjoernLudwigPTB revised this gist Sep 13, 2019. 1 changed file with 3 additions and 2 deletions.
    5 changes: 3 additions & 2 deletions .gitignore_global
    Original file line number Diff line number Diff line change
    @@ -80,6 +80,7 @@ Thumbs.db
    .pytest_cache/
    __pycache__/

    # Jetbrains IDEs #
    ##################
    # Jetbrains IDEs also we are aware of #
    # https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 #
    ######################################################################
    .idea/
  2. BjoernLudwigPTB revised this gist Sep 13, 2019. No changes.
  3. BjoernLudwigPTB revised this gist Sep 13, 2019. 2 changed files with 85 additions and 37 deletions.
    37 changes: 0 additions & 37 deletions .gitignore
    Original file line number Diff line number Diff line change
    @@ -1,37 +0,0 @@
    # 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
    85 changes: 85 additions & 0 deletions .gitignore_global
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,85 @@
    ################################################################################
    # Originally taken from the Octocat at #
    # https://gist.github.com/octocat/9257657 #
    # #
    # Installation command you find here #
    # https://help.github.com/en/articles/ignoring-files#create-a-global-gitignore #
    ################################################################################

    # 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

    # LaTeX #
    # taken from https://gist.github.com/kogakure/149016 #
    # found through https://gist.github.com/rbf/2224744 #
    ######################################################
    *.aux
    *.glo
    *.idx
    *.log
    *.toc
    *.ist
    *.acn
    *.acr
    *.alg
    *.bbl
    *.blg
    *.dvi
    *.glg
    *.gls
    *.ilg
    *.ind
    *.lof
    *.lot
    *.maf
    *.mtc
    *.mtc1
    *.out
    *.synctex.gz

    # Python inspired by https://gist.github.com/rbf/2224744 #
    ##########################################################
    *.pyc
    .coverage
    .tox
    .pytest_cache/
    __pycache__/

    # Jetbrains IDEs #
    ##################
    .idea/
  4. @octocat octocat created this gist Feb 27, 2014.
    37 changes: 37 additions & 0 deletions .gitignore
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,37 @@
    # 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