.gitignore 837 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. tags
  2. # Ignore executables (no extension) but not source files
  3. example/server
  4. !example/server.*
  5. example/client
  6. !example/client.*
  7. example/hello
  8. !example/hello.*
  9. example/simplecli
  10. !example/simplecli.*
  11. example/simplesvr
  12. !example/simplesvr.*
  13. example/benchmark
  14. !example/benchmark.*
  15. example/redirect
  16. !example/redirect.*
  17. example/ssecli
  18. example/ssesvr
  19. example/upload
  20. !example/upload.*
  21. example/one_time_request
  22. !example/one_time_request.*
  23. example/server_and_client
  24. !example/server_and_client.*
  25. example/*.pem
  26. test/httplib.cc
  27. test/httplib.h
  28. test/test
  29. test/server_fuzzer
  30. test/test_proxy
  31. test/test_split
  32. test/test.xcodeproj/xcuser*
  33. test/test.xcodeproj/*/xcuser*
  34. test/*.o
  35. test/*.pem
  36. test/*.srl
  37. test/_build_*
  38. work/
  39. benchmark/server*
  40. *.swp
  41. build/
  42. Debug
  43. Release
  44. *.vcxproj.user
  45. *.sdf
  46. *.suo
  47. *.opensdf
  48. *.db
  49. ipch
  50. *.dSYM
  51. *.pyc
  52. .*
  53. !/.gitattributes
  54. !/.github