.gitignore 735 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. # Exclude test config files from source control
  2. psiphon_config
  3. psiphon.config
  4. controller_test.config
  5. psiphon.db*
  6. psiphon.boltdb
  7. # Exclude compiled tunnel core binaries
  8. ConsoleClient/ConsoleClient
  9. ConsoleClient/bin
  10. AndroidLibrary/psi.aar
  11. # Compiled Object files, Static and Dynamic libs (Shared Objects)
  12. *.o
  13. *.a
  14. *.so
  15. # Folders
  16. _obj
  17. _test
  18. # Architecture specific extensions/prefixes
  19. *.[568vq]
  20. [568vq].out
  21. *.cgo1.go
  22. *.cgo2.c
  23. _cgo_defun.c
  24. _cgo_gotypes.go
  25. _cgo_export.*
  26. _testmain.go
  27. *.exe
  28. *.test
  29. *.prof
  30. *_buildinfo.txt
  31. # Mac OS X clutter
  32. *.DS_Store
  33. # Windows clutter
  34. Thumbs.db
  35. # Intellij IDEA (see https://intellij-support.jetbrains.com/entries/23393067)
  36. .idea/workspace.xml
  37. .idea/tasks.xml
  38. # Ignore gradle files
  39. .gradle/
  40. build/