36 lines
430 B
Plaintext
Executable File
36 lines
430 B
Plaintext
Executable File
#This the the canonical lab .gitignore file
|
|
|
|
#ignore temp files
|
|
*~
|
|
|
|
#ignore pdf files (just keep source files)
|
|
*.pdf
|
|
|
|
#ignore junk files from latex output
|
|
*.out
|
|
*.log
|
|
*.aux
|
|
*.dvi
|
|
*.ps
|
|
|
|
#ignore junk files from compiling C code
|
|
*.o
|
|
emulate
|
|
assemble
|
|
|
|
#ignore junk files from compiling Haskell code
|
|
*.hi
|
|
|
|
#ignore junk files from compiling Java code
|
|
*.class
|
|
|
|
#ignore other junk files
|
|
*.backup
|
|
*.kate-swp
|
|
*.swp
|
|
*.snm
|
|
*.vrb
|
|
*.nav
|
|
*.toc
|
|
|