1
0

git-ignore.toml 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. # Git-ignoring
  2. [[cmd]]
  3. name = "‘exa --git-ignore’ skips Git-ignored files"
  4. shell = "exa --git-ignore /testcases/git2/ignoreds"
  5. environment = { COLUMNS = "80" }
  6. stdout = { file = "outputs/git2_ignoreds_grid_gitignore.ansitxt" }
  7. stderr = { empty = true }
  8. status = 0
  9. tags = [ 'env', 'grid', 'git-ignore' ]
  10. [[cmd]]
  11. name = "‘exa --git-ignore -1’ skips Git-ignored files"
  12. shell = "exa --git-ignore -1 /testcases/git2/ignoreds"
  13. stdout = { file = "outputs/git2_ignoreds_lines_gitignore.ansitxt" }
  14. stderr = { empty = true }
  15. status = 0
  16. tags = [ 'oneline', 'git-ignore' ]
  17. [[cmd]]
  18. name = "‘exa --git-ignore -l’ skips Git-ignored files"
  19. shell = "exa --git-ignore -l /testcases/git2/ignoreds"
  20. stdout = { file = "outputs/git2_ignoreds_long_gitignore.ansitxt" }
  21. stderr = { empty = true }
  22. status = 0
  23. tags = [ 'long', 'git-ignore' ]
  24. [[cmd]]
  25. name = "‘exa --git-ignore -lG’ skips Git-ignored files"
  26. shell = "exa --git-ignore -lG /testcases/git2/ignoreds"
  27. environment = { COLUMNS = "150" }
  28. stdout = { file = "outputs/git2_ignoreds_long_grid_gitignore.ansitxt" }
  29. stderr = { empty = true }
  30. status = 0
  31. tags = [ 'env', 'long', 'grid', 'git-ignore' ]
  32. [[cmd]]
  33. name = "‘exa --git-ignore -lR’ skips Git-ignored files"
  34. shell = "exa --git-ignore -lR /testcases/git2/ignoreds"
  35. stdout = { file = "outputs/git2_ignoreds_long_recurse_gitignore.ansitxt" }
  36. stderr = { empty = true }
  37. status = 0
  38. tags = [ 'long', 'recurse', 'git-ignore' ]
  39. [[cmd]]
  40. name = "‘exa --git-ignore -lT’ skips Git-ignored files"
  41. shell = "exa --git-ignore -lT /testcases/git2/ignoreds"
  42. stdout = { file = "outputs/git2_ignoreds_long_tree_gitignore.ansitxt" }
  43. stderr = { empty = true }
  44. status = 0
  45. tags = [ 'long', 'tree', 'git-ignore' ]
  46. [[cmd]]
  47. name = "‘exa --git-ignore -T’ skips Git-ignored files"
  48. shell = "exa --git-ignore -T /testcases/git2/ignoreds"
  49. stdout = { file = "outputs/git2_ignoreds_tree_gitignore.ansitxt" }
  50. stderr = { empty = true }
  51. status = 0
  52. tags = [ 'tree', 'git-ignore' ]
  53. # Recursive git-ignoring
  54. [[cmd]]
  55. name = "‘exa --git-ignore -lR’ skips Git-ignored files in subfolders"
  56. shell = "exa --git-ignore -lR /testcases/git2"
  57. stdout = { file = "outputs/git2_long_recurse_gitignore.ansitxt" }
  58. stderr = { empty = true }
  59. status = 0
  60. tags = [ 'long', 'recurse', 'git-ignore' ]
  61. [[cmd]]
  62. name = "‘exa --git-ignore -lT’ skips Git-ignored files in subfolders"
  63. shell = "exa --git-ignore -lT /testcases/git2"
  64. stdout = { file = "outputs/git2_long_tree_gitignore.ansitxt" }
  65. stderr = { empty = true }
  66. status = 0
  67. tags = [ 'long', 'tree', 'git-ignore' ]
  68. [[cmd]]
  69. name = "‘exa --git-ignore -T’ skips Git-ignored files in subfolders"
  70. shell = "exa --git-ignore -T /testcases/git2"
  71. stdout = { file = "outputs/git2_tree_gitignore.ansitxt" }
  72. stderr = { empty = true }
  73. status = 0
  74. tags = [ 'tree', 'git-ignore' ]