.gitignore 884 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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/accept_header
  26. !example/accept_header.*
  27. example/*.pem
  28. test/httplib.cc
  29. test/httplib.h
  30. test/test
  31. test/server_fuzzer
  32. test/test_proxy
  33. test/test_split
  34. test/test.xcodeproj/xcuser*
  35. test/test.xcodeproj/*/xcuser*
  36. test/*.o
  37. test/*.pem
  38. test/*.srl
  39. test/_build_*
  40. work/
  41. benchmark/server*
  42. *.swp
  43. build/
  44. Debug
  45. Release
  46. *.vcxproj.user
  47. *.sdf
  48. *.suo
  49. *.opensdf
  50. *.db
  51. ipch
  52. *.dSYM
  53. *.pyc
  54. .*
  55. !/.gitattributes
  56. !/.github