vaiwa
4/25/2015 - 7:00 PM

git gitignore

git gitignore

#.gitignore

*.a         # no .a files
!lib.a      # but do track lib.a, even though you're ignoring .a files above
/TODO       # only ignore the root TODO file, not subdir/TODO
build/      # ignore all files in the build/ directory
doc/*.txt   # ignore doc/notes.txt, but not doc/server/arch.txt