https://github.com/stan-dev/stan
Raw File
Tip revision: 5250745e61c931893c6afeba407ab2a92a5f5c10 authored by Daniel Lee on 05 February 2015, 17:34:34 UTC
Merge pull request #1273 from stan-dev/release/v2.6.0
Tip revision: 5250745
.gitignore
# /
/demo
/models
/test
/*.dSYM
/bin

# other binary
*.o
*.exe

# /doc/
/doc/api
/doc/*.pdf
/doc/*.txt

# temporary latex files
*.idx
*.ilg
*.ind
*.fdb_latexmk
*.fls

# temporary emacs files
*~
\#*#

# depedencies files
*.d
*.hpp.d.*
.Rproj.user
stan.Rproj
.kdev4/
stan.kdev4
.Rapp.history

# tests: compiled models
/src/test/test-models/*.hpp
/src/test/test-models/*/*.hpp
/src/test/test-models/*/*/*.hpp
/src/test/test-models/*/*/*/*.hpp
/src/test/test-models/*/*/*/*/*.hpp
/src/test/test-models/*/*/*/*/*/*.hpp
/src/test/test-models/*/*/*/*/*/*/*.hpp
!/src/test/test-models/**/*.stan
!/src/test/test-models/**/.gitignore

# tests: generated agrad tests
/src/test/unit-distribution/*/*/*/*_generated_*_test.cpp

# For the Mac
*.DS_Store

# local make include
/make/local
back to top