.gitignore 445 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. ### git's track ignore file-list.
  2. ### vim
  3. *.swp
  4. *.swo
  5. *~
  6. ### ctags
  7. tags
  8. ### cscope
  9. cscope.in.out
  10. cscope.out
  11. cscope.po.out
  12. ### Source Insight
  13. *.IAB
  14. *.IAD
  15. *.IMB
  16. *.IMD
  17. *.PFI
  18. *.PO
  19. *.PR
  20. *.PRI
  21. *.PS
  22. *.WK3
  23. *.SearchResults
  24. ### SlickEdit
  25. *.vpwhist
  26. *.vtg
  27. *.vpj
  28. *.vpw
  29. ### Goland(Gogland)
  30. .idea/
  31. !.gitignore
  32. !.gitmodules
  33. # Other ignore the trace files
  34. #*.o
  35. #*.a
  36. #*.bak
  37. #*~
  38. #*.so
  39. #*.log
  40. #*.gz
  41. #*.bz2