Wiki

Clone wiki

bnpy-dev / .gitignore

IGNORE THESE FILES FROM THE GITHUB REPOSITORY

====================================================== EXCLUDE DIRECTORIES

Exclude everything in the bin directory,

which holds compiled binaries for executing on grid

These can all be built automatically using the build_*.sh scripts in the code directory

bin/

Exclude everything in these directories

These aren't of interest for tracking in a repository because

(1) file sizes can be HUGE

(2) these files rarely mean anything to others except the person who ran the test

local/ results/ profile/ .ipynb_checkpoints/

====================================================== EXCLUDE FILE PATTERNS

Exclude script files

run_bnpy.sh

Exclude user-specific config options for where to read and write data

*.path

Exclude temporary files created by text editors

~ ~lock .DS_Store .*.swp

Exclude weird NFS file system dumps

.nfs*

Exclude mocap files

.amc .asf *.key

Exclude videos

.avi .swf *.mpg

Exclude compiled python

*.pyc

Exclude executable files generated by Matlab's mex

.mat .mexglx .mexa64 .mexmaci64 *.so

Exclude auxiliary files generated by LaTeX

.pdf -eps-converted-to.pdf .dvi .log .blg .bbl .aux .backup .tmp .synctex.gz *.out

Updated