4da194f75f8d6d7e844cf438792c91b2ef307a98
David Blume Add a .gitignore file

David Blume authored 8 years ago

1) ### C++ ###
2) # Compiled Object files
3) *.slo
4) *.lo
5) *.o
6) *.obj
7) 
8) # Precompiled Headers
9) *.gch
10) *.pch
11) 
12) # Compiled Dynamic libraries
13) *.so
14) *.dylib
15) *.dll
16) *.a
17) 
18) ### Python ###
19) # Byte-compiled / optimized / DLL files
20) __pycache__/
21) *.py[cod]
22) *$py.class
23) 
David Blume Added PyCharm user specific...

David Blume authored 7 years ago

24) # PyCharm project user-specific stuff:
25) .idea/workspace.xml
26) .idea/tasks.xml
27) 
David Blume Add a .gitignore file

David Blume authored 8 years ago

28) ### SublimeText ###
29) # cache files for sublime text
30) *.tmlanguage.cache
31) *.tmPreferences.cache
32) *.stTheme.cache
33) 
34) # workspace files are user-specific
35) *.sublime-workspace
36) 
37) # sftp configuration file
38) sftp-config.json
39) 
40) ### Vim ###
41) [._]*.s[a-w][a-z]
42) [._]s[a-w][a-z]
43) *.un~
44) Session.vim
45) .netrwhist
46) *~
47) 
David Blume Have git ignore files from...

David Blume authored 6 years ago

48) # cscope and ctags
49) tags
50) cscope.files
51) cscope.out
52) cscope.in.out
53) cscope.po.out
David Blume Use a .gitconfig.local file...

David Blume authored 5 years ago

54) 
dblume Add .DS_Store to .gitignore

dblume authored 2 years ago

55) ### macOS ###
56) .DS_Store
57) 
dblume Add gdb history to .gitignore

dblume authored 2 years ago

58) ### Gdb ###
59) .gdb_history
60)