.jazzignore 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. ### Jazz Ignore 0
  2. # Ignored files and folders will not be committed, but may be modified during
  3. # accept or update.
  4. # - Ignore properties should contain a space separated list of filename patterns.
  5. # - Each pattern is case sensitive and surrounded by braces ('{' and '}').
  6. # - "*" matches zero or more characters.
  7. # - "?" matches a single character.
  8. # - The pattern list may be split across lines by ending the line with a
  9. # backslash and starting the next line with a tab.
  10. # - Patterns in core.ignore prevent matching resources in the same
  11. # directory from being committed.
  12. # - Patterns in core.ignore.recursive matching resources in the current
  13. # directory and all subdirectories from being committed.
  14. # - The default value of core.ignore.recursive is *.class
  15. # - The default value for core.ignore is bin
  16. #
  17. # To ignore shell scripts and hidden files in this subtree:
  18. # e.g: core.ignore.recursive = {*.sh} {\.*}
  19. #
  20. # To ignore resources named 'bin' in the current directory (but allow
  21. # them in any sub directorybelow):
  22. # e.g: core.ignore = {bin}
  23. #
  24. # NOTE: modifying ignore files will not change the ignore status of
  25. # Eclipse derived resources.
  26. core.ignore.recursive=
  27. core.ignore= \
  28. {cs} \
  29. {cy} \
  30. {da} \
  31. {de} \
  32. {es} \
  33. {fi} \
  34. {fr} \
  35. {gl} \
  36. {he} \
  37. {hr} \
  38. {hu} \
  39. {it} \
  40. {ja} \
  41. {kk} \
  42. {ko} \
  43. {nb} \
  44. {nl} \
  45. {no} \
  46. {pl} \
  47. {pt} \
  48. {pt-br} \
  49. {ro} \
  50. {ru} \
  51. {sl} \
  52. {sv} \
  53. {th} \
  54. {tr} \
  55. {zh} \
  56. {zh-cn} \
  57. {zh-tw}