-
-
Save BjoernLudwigPTB/01f7e81ed8f5ae14a2b84b462470c4a6 to your computer and use it in GitHub Desktop.
Revisions
-
BjoernLudwigPTB revised this gist
Sep 13, 2019 . 1 changed file with 3 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -80,6 +80,7 @@ Thumbs.db .pytest_cache/ __pycache__/ # Jetbrains IDEs also we are aware of # # https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 # ###################################################################### .idea/ -
BjoernLudwigPTB revised this gist
Sep 13, 2019 . No changes.There are no files selected for viewing
-
BjoernLudwigPTB revised this gist
Sep 13, 2019 . 2 changed files with 85 additions and 37 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,37 +0,0 @@ This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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/ -
octocat created this gist
Feb 27, 2014 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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