1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
# ----------------------------------------------------------------------------
# specific files
#
#
# cmake configure files
/bin/test_one.sh
/include/cppad/configure.hpp
#
# create by bin/test_one.sh
/test_one.cpp
/test_one.exe
/test_one.exe.dSYM/
#
# git commit script
/git_commit.sh
# ----------------------------------------------------------------------------
# specific directories
#
# buld directories
/build/
/build2/
#
# for building external packages
/external/
#
# for caching git changes
/new/
/new.*/
# ----------------------------------------------------------------------------
# specific extensions in top direcotry
/*.err
/*.log
/*.tmp
# ----------------------------------------------------------------------------
# vim swap files in any directory
*.swp
# ----------------------------------------------------------------------------
# temp files in any directory
temp
temp.*
|