eac_tools 0.123.1 → 0.124.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (596) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +29 -39
  3. data/eac_tools.gemspec +2 -2
  4. data/lib/eac_tools/version.rb +1 -1
  5. data/sub/avm-eac_redmine_base0/.gitrepo +7 -0
  6. data/sub/avm-eac_redmine_base0/.rubocop.yml +2 -0
  7. data/sub/{avm-eac_ruby_base1/avm-eac_ruby_base1.gemspec → avm-eac_redmine_base0/avm-eac_redmine_base0.gemspec} +9 -7
  8. data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/apache_host.rb +10 -0
  9. data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/base/database.rb +27 -0
  10. data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/base/files.rb +18 -0
  11. data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/base/gitolite.rb +52 -0
  12. data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/base/install.rb +43 -0
  13. data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/base/nodejs.rb +21 -0
  14. data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/base/web.rb +17 -0
  15. data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/base.rb +63 -0
  16. data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/deploy.rb +16 -0
  17. data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/docker_image.rb +110 -0
  18. data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/rest_api/entity_base.rb +27 -0
  19. data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/rest_api/project.rb +30 -0
  20. data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/rest_api/root.rb +17 -0
  21. data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/rest_api/wiki_page.rb +67 -0
  22. data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/rest_api.rb +16 -0
  23. data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/runners/docker.rb +15 -0
  24. data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/runners/project/wiki_page/read.rb +25 -0
  25. data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/runners/project/wiki_page/write.rb +68 -0
  26. data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/runners/project/wiki_page.rb +26 -0
  27. data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/runners/project.rb +22 -0
  28. data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/instances/runners/project_rename.rb +53 -0
  29. data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/sources/base/default_settings.rb +45 -0
  30. data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/sources/base/update.rb +16 -0
  31. data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/sources/base.rb +34 -0
  32. data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/sources/core_update.rb +125 -0
  33. data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/sources/runners/core_update.rb +61 -0
  34. data/sub/avm-eac_redmine_base0/lib/avm/eac_redmine_base0/sources/runners/docker.rb +16 -0
  35. data/sub/{avm-git/lib/avm/git → avm-eac_redmine_base0/lib/avm/eac_redmine_base0}/version.rb +2 -2
  36. data/sub/{avm-eac_ruby_base1/lib/avm/eac_ruby_base1.rb → avm-eac_redmine_base0/lib/avm/eac_redmine_base0.rb} +4 -3
  37. data/sub/avm-eac_redmine_base0/locale/en.yml +6 -0
  38. data/sub/avm-eac_redmine_base0/locale/pt-BR.yml +6 -0
  39. data/sub/avm-eac_redmine_base0/spec/lib/avm/eac_redmine_base0/instances/apache_host_spec.rb +19 -0
  40. data/sub/avm-eac_redmine_base0/spec/lib/avm/eac_redmine_base0/instances/apache_host_spec_files/apache_host_spec_no_ssl_content.conf +11 -0
  41. data/sub/avm-eac_redmine_base0/spec/lib/avm/eac_redmine_base0/instances/base/gitolite_spec.rb +24 -0
  42. data/sub/avm-eac_redmine_base0/spec/lib/avm/eac_redmine_base0/instances/base/gitolite_spec_files/config.yml +10 -0
  43. data/sub/{avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/source_generators/base_spec_files/dashed-mygem → avm-eac_redmine_base0}/spec/spec_helper.rb +2 -1
  44. data/sub/avm-eac_redmine_base0/template/avm/eac_redmine_base0/instances/deploy/config/install.sh.template +46 -0
  45. data/sub/avm-eac_redmine_base0/template/avm/eac_redmine_base0/instances/deploy/config/secrets.yml +8 -0
  46. data/sub/avm-eac_redmine_base0/template/avm/eac_redmine_base0/instances/docker_image/Dockerfile.template +37 -0
  47. data/sub/avm-eac_redmine_base0/template/avm/eac_redmine_base0/instances/docker_image/apache_host_dockerfile +8 -0
  48. data/sub/avm-eac_redmine_base0/template/avm/eac_redmine_base0/instances/docker_image/apache_http_virtualhost.conf.template +10 -0
  49. data/sub/avm-eac_redmine_base0/template/avm/eac_redmine_base0/instances/docker_image/apache_https_virtualhost.conf.template +16 -0
  50. data/sub/avm-eac_redmine_base0/template/avm/eac_redmine_base0/instances/docker_image/apache_path_dockerfile +5 -0
  51. data/sub/avm-eac_redmine_base0/template/avm/eac_redmine_base0/instances/docker_image/start.sh.template +53 -0
  52. metadata +55 -559
  53. data/sub/avm-eac_ruby_base1/.gitignore +0 -2
  54. data/sub/avm-eac_ruby_base1/.gitrepo +0 -7
  55. data/sub/avm-eac_ruby_base1/.rubocop.yml +0 -3
  56. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/bundler/gemfile/add_or_replace_gem_line.rb +0 -54
  57. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/bundler/gemfile/dependency.rb +0 -17
  58. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/bundler/gemfile.rb +0 -32
  59. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/bundler/incompatible_parser/depends_on.rb +0 -22
  60. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/bundler/incompatible_parser/gem_conflict.rb +0 -41
  61. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/bundler/incompatible_parser/in_gemfile.rb +0 -14
  62. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/bundler/incompatible_parser/line_buffer.rb +0 -73
  63. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/bundler/incompatible_parser/line_factory.rb +0 -26
  64. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/bundler/incompatible_parser/line_parser_base.rb +0 -17
  65. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/bundler/incompatible_parser/ruby_requirement.rb +0 -13
  66. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/bundler/incompatible_parser/version_requirement.rb +0 -23
  67. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/bundler/incompatible_parser.rb +0 -21
  68. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/file_formats/base/file_resource_name.rb +0 -44
  69. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/file_formats/base.rb +0 -20
  70. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/instances/mixin.rb +0 -24
  71. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/launcher/gem/build.rb +0 -120
  72. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/launcher/gem/specification.rb +0 -61
  73. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/launcher_stereotypes/base/local_project_mixin.rb +0 -24
  74. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/launcher_stereotypes/base/publish/internal_check.rb +0 -71
  75. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/launcher_stereotypes/base/publish/local_gem.rb +0 -31
  76. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/launcher_stereotypes/base/publish/remote_gem.rb +0 -45
  77. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/launcher_stereotypes/base/publish.rb +0 -33
  78. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/launcher_stereotypes/base.rb +0 -32
  79. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/preferred_version_requirements.rb +0 -40
  80. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/rspec/setup.rb +0 -13
  81. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/rspec/source_generator.rb +0 -20
  82. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/rubocop/command/build.rb +0 -41
  83. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/rubocop/command.rb +0 -80
  84. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/rubocop/offense_set/file.rb +0 -51
  85. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/rubocop/offense_set/line_processor.rb +0 -54
  86. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/rubocop/offense_set/offense.rb +0 -34
  87. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/rubocop/offense_set.rb +0 -28
  88. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/rubocop/runner/configured.rb +0 -31
  89. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/rubocop/runner/envvar.rb +0 -17
  90. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/rubocop/runner/gemfile.rb +0 -41
  91. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/rubocop/runner.rb +0 -56
  92. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/rubygems/gem_search_parser.rb +0 -34
  93. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/rubygems/gemspec/add_or_replace_gem_line.rb +0 -69
  94. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/rubygems/gemspec/dependency.rb +0 -28
  95. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/rubygems/gemspec.rb +0 -57
  96. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/rubygems/providers/base/command_result_to_push_result.rb +0 -39
  97. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/rubygems/providers/base.rb +0 -59
  98. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/rubygems/providers/nexus.rb +0 -29
  99. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/rubygems/providers/rubygems_org.rb +0 -42
  100. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/rubygems/remote.rb +0 -31
  101. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/rubygems/version_file.rb +0 -43
  102. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/runners/base/lib_rename.rb +0 -74
  103. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/runners/base/rubocop.rb +0 -27
  104. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/runners/base.rb +0 -14
  105. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/runners.rb +0 -8
  106. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/source_generators/base/dependencies.rb +0 -59
  107. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/source_generators/base/gemfile_lock.rb +0 -23
  108. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/source_generators/base/gemspec.rb +0 -81
  109. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/source_generators/base/options.rb +0 -32
  110. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/source_generators/base/root_module.rb +0 -46
  111. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/source_generators/base/version_builder.rb +0 -58
  112. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/source_generators/base.rb +0 -48
  113. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/sources/base/bundle_command.rb +0 -35
  114. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/sources/base/bundler.rb +0 -62
  115. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/sources/base/gem_provider.rb +0 -46
  116. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/sources/base/rake.rb +0 -39
  117. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/sources/base/rubocop.rb +0 -34
  118. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/sources/base/rubocop_command.rb +0 -51
  119. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/sources/base/rubygems.rb +0 -50
  120. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/sources/base/update.rb +0 -31
  121. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/sources/base/version.rb +0 -30
  122. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/sources/base/version_bump.rb +0 -16
  123. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/sources/base.rb +0 -55
  124. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/sources/bundle_update.rb +0 -21
  125. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/sources/gemfile_local/sibling.rb +0 -51
  126. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/sources/gemfile_local.rb +0 -65
  127. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/sources/namespace_replacer.rb +0 -66
  128. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/sources/runners/bundle.rb +0 -26
  129. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/sources/runners/bundler/gemfile_local.rb +0 -55
  130. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/sources/runners/bundler/gemfile_lock/git.rb +0 -58
  131. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/sources/runners/bundler/gemfile_lock.rb +0 -88
  132. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/sources/runners/bundler/incompatible.rb +0 -73
  133. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/sources/runners/bundler.rb +0 -16
  134. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/sources/tests/base.rb +0 -57
  135. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/sources/tests/minitest.rb +0 -27
  136. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/sources/tests/multiple/decorated_gem.rb +0 -50
  137. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/sources/tests/multiple/result.rb +0 -29
  138. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/sources/tests/multiple.rb +0 -85
  139. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/sources/tests/rspec.rb +0 -23
  140. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/sources/update/changes/dependencies_requirements.rb +0 -57
  141. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/sources/update/changes/gemfile_lock.rb +0 -28
  142. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/sources/update/changes/rubocop_format.rb +0 -31
  143. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/sources/update/sub_update.rb +0 -57
  144. data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/version.rb +0 -7
  145. data/sub/avm-eac_ruby_base1/locale/en.yml +0 -21
  146. data/sub/avm-eac_ruby_base1/locale/pt-BR.yml +0 -21
  147. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/bundler/incompatible_parser_spec.rb +0 -5
  148. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/bundler/incompatible_parser_spec_files/1.source.out +0 -192
  149. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/bundler/incompatible_parser_spec_files/1.target.yaml +0 -300
  150. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/bundler/incompatible_parser_spec_files/2.source.out +0 -245
  151. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/bundler/incompatible_parser_spec_files/2.target.yaml +0 -355
  152. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/bundler/incompatible_parser_spec_files/3.source.out +0 -0
  153. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/bundler/incompatible_parser_spec_files/3.target.yaml +0 -305
  154. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/file_formats/base_spec.rb +0 -13
  155. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/file_formats/base_spec_files/Gemfile.source +0 -6
  156. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/file_formats/base_spec_files/Gemfile.target +0 -3
  157. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/file_formats/base_spec_files/ruby_code.rb.source +0 -6
  158. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/file_formats/base_spec_files/ruby_code.rb.target +0 -5
  159. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/launcher/gem/build_spec.rb +0 -43
  160. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/launcher/gem/specification_spec.rb +0 -57
  161. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/launcher_stereotypes/base/publish_spec.rb +0 -25
  162. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/launcher_stereotypes/base_spec.rb +0 -21
  163. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/preferred_version_requirements_spec.rb +0 -21
  164. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/rubygems/gem_search_parser_spec.rb +0 -5
  165. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/rubygems/gem_search_parser_spec_files/empty.source +0 -1
  166. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/rubygems/gem_search_parser_spec_files/empty.target.yaml +0 -1
  167. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/rubygems/gem_search_parser_spec_files/many_versions.source +0 -1
  168. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/rubygems/gem_search_parser_spec_files/many_versions.target.yaml +0 -123
  169. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/rubygems/gemspec_spec.rb +0 -35
  170. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/rubygems/gemspec_spec_files/changes1.source.yaml +0 -5
  171. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/rubygems/gemspec_spec_files/changes1.target.txt +0 -15
  172. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/rubygems/gemspec_spec_files/the_gem.gemspec +0 -15
  173. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/rubygems/version_file_spec.rb +0 -13
  174. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/rubygems/version_file_spec_files/a_version_file.rb +0 -7
  175. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/runners/base/rubocop_spec.rb +0 -33
  176. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/runners/base/rubocop_spec_files/dir1/.avm.yml +0 -4
  177. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/runners/base/rubocop_spec_files/dir1/dir3/Gemfile +0 -7
  178. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/runners/base/rubocop_spec_files/dir1/dir3/Gemfile.lock +0 -31
  179. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/runners/base/rubocop_spec_files/dir2/empty.rb +0 -1
  180. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/runners/base/rubocop_spec_files/dir4/.avm.yml +0 -4
  181. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/runners/base/rubocop_spec_files/dir4/false_command.rb +0 -4
  182. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/source_generators/base_spec.rb +0 -16
  183. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/source_generators/base_spec_files/dashed-mygem/.rspec +0 -1
  184. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/source_generators/base_spec_files/dashed-mygem/.rubocop.yml +0 -3
  185. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/source_generators/base_spec_files/dashed-mygem/Gemfile +0 -8
  186. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/source_generators/base_spec_files/dashed-mygem/Gemfile.lock +0 -1
  187. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/source_generators/base_spec_files/dashed-mygem/_gitignore +0 -2
  188. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/source_generators/base_spec_files/dashed-mygem/dashed-mygem.gemspec +0 -20
  189. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/source_generators/base_spec_files/dashed-mygem/lib/dashed/mygem/version.rb +0 -7
  190. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/source_generators/base_spec_files/dashed-mygem/lib/dashed/mygem.rb +0 -4
  191. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/source_generators/base_spec_files/mygem/.rspec +0 -1
  192. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/source_generators/base_spec_files/mygem/.rubocop.yml +0 -3
  193. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/source_generators/base_spec_files/mygem/Gemfile +0 -8
  194. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/source_generators/base_spec_files/mygem/Gemfile.lock +0 -1
  195. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/source_generators/base_spec_files/mygem/_gitignore +0 -2
  196. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/source_generators/base_spec_files/mygem/lib/mygem/version.rb +0 -5
  197. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/source_generators/base_spec_files/mygem/lib/mygem.rb +0 -4
  198. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/source_generators/base_spec_files/mygem/mygem.gemspec +0 -20
  199. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/source_generators/base_spec_files/mygem/spec/spec_helper.rb +0 -5
  200. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/sources/base/bundler_spec.rb +0 -28
  201. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/sources/base/bundler_spec_files/mygem/Gemfile +0 -5
  202. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/sources/base/bundler_spec_files/mygem/Gemfile.lock +0 -19
  203. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/sources/base/bundler_spec_files/mygem/Rakefile +0 -14
  204. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/sources/base/bundler_spec_files/mygem/exe/myrunner +0 -5
  205. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/sources/base/bundler_spec_files/mygem/lib/mygem/version.rb +0 -5
  206. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/sources/base/bundler_spec_files/mygem/lib/mygem.rb +0 -7
  207. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/sources/base/bundler_spec_files/mygem/mygem.gemspec +0 -17
  208. data/sub/avm-eac_ruby_base1/spec/lib/avm/eac_ruby_base1/sources/base_spec.rb +0 -13
  209. data/sub/avm-eac_ruby_base1/spec/spec_helper.rb +0 -5
  210. data/sub/avm-eac_ruby_base1/template/avm/eac_ruby_base1/source_generators/base/gemspec.template +0 -19
  211. data/sub/avm-eac_ruby_base1/template/avm/eac_ruby_base1/source_generators/base/root_lib.template +0 -4
  212. data/sub/avm-eac_ruby_base1/template/avm/eac_ruby_base1/source_generators/base/static/.gitignore +0 -2
  213. data/sub/avm-eac_ruby_base1/template/avm/eac_ruby_base1/source_generators/base/static/.rspec +0 -1
  214. data/sub/avm-eac_ruby_base1/template/avm/eac_ruby_base1/source_generators/base/static/.rubocop.yml +0 -3
  215. data/sub/avm-eac_ruby_base1/template/avm/eac_ruby_base1/source_generators/base/static/Gemfile +0 -8
  216. data/sub/avm-eac_ruby_base1/template/avm/eac_ruby_base1/source_generators/base/static/spec/spec_helper.rb.template +0 -5
  217. data/sub/avm-eac_ruby_base1/template/avm/eac_ruby_base1/source_generators/base/version.template +0 -5
  218. data/sub/avm-git/.gitrepo +0 -7
  219. data/sub/avm-git/.rspec +0 -1
  220. data/sub/avm-git/.rubocop.yml +0 -6
  221. data/sub/avm-git/Gemfile +0 -8
  222. data/sub/avm-git/avm-git.gemspec +0 -25
  223. data/sub/avm-git/lib/avm/git/application_scms/base/assert_main_at.rb +0 -44
  224. data/sub/avm-git/lib/avm/git/application_scms/base.rb +0 -18
  225. data/sub/avm-git/lib/avm/git/commit/class_methods.rb +0 -29
  226. data/sub/avm-git/lib/avm/git/commit/diff_tree_line.rb +0 -32
  227. data/sub/avm-git/lib/avm/git/commit/file.rb +0 -42
  228. data/sub/avm-git/lib/avm/git/commit.rb +0 -57
  229. data/sub/avm-git/lib/avm/git/issue/complete/commits.rb +0 -40
  230. data/sub/avm-git/lib/avm/git/issue/complete/git_subrepos.rb +0 -20
  231. data/sub/avm-git/lib/avm/git/issue/complete/local_branch.rb +0 -59
  232. data/sub/avm-git/lib/avm/git/issue/complete/local_tag.rb +0 -37
  233. data/sub/avm-git/lib/avm/git/issue/complete/push.rb +0 -60
  234. data/sub/avm-git/lib/avm/git/issue/complete/remote.rb +0 -33
  235. data/sub/avm-git/lib/avm/git/issue/complete/test.rb +0 -34
  236. data/sub/avm-git/lib/avm/git/issue/complete/tracker.rb +0 -21
  237. data/sub/avm-git/lib/avm/git/issue/complete/validation.rb +0 -36
  238. data/sub/avm-git/lib/avm/git/issue/complete/validations.rb +0 -54
  239. data/sub/avm-git/lib/avm/git/issue/complete/working_tree.rb +0 -19
  240. data/sub/avm-git/lib/avm/git/issue/complete.rb +0 -66
  241. data/sub/avm-git/lib/avm/git/launcher/base/class_methods.rb +0 -28
  242. data/sub/avm-git/lib/avm/git/launcher/base/dirty_files.rb +0 -21
  243. data/sub/avm-git/lib/avm/git/launcher/base/remotes.rb +0 -37
  244. data/sub/avm-git/lib/avm/git/launcher/base/subrepo.rb +0 -42
  245. data/sub/avm-git/lib/avm/git/launcher/base/underlying.rb +0 -54
  246. data/sub/avm-git/lib/avm/git/launcher/base.rb +0 -80
  247. data/sub/avm-git/lib/avm/git/launcher/error.rb +0 -13
  248. data/sub/avm-git/lib/avm/git/launcher/mirror_update.rb +0 -36
  249. data/sub/avm-git/lib/avm/git/launcher/publish_base.rb +0 -128
  250. data/sub/avm-git/lib/avm/git/launcher/remote.rb +0 -53
  251. data/sub/avm-git/lib/avm/git/launcher/sub_warp_base.rb +0 -36
  252. data/sub/avm-git/lib/avm/git/launcher/warp_base.rb +0 -63
  253. data/sub/avm-git/lib/avm/git/launcher_stereotypes/git/local_project_mixin.rb +0 -16
  254. data/sub/avm-git/lib/avm/git/launcher_stereotypes/git/publish.rb +0 -13
  255. data/sub/avm-git/lib/avm/git/launcher_stereotypes/git/warp.rb +0 -25
  256. data/sub/avm-git/lib/avm/git/launcher_stereotypes/git.rb +0 -21
  257. data/sub/avm-git/lib/avm/git/launcher_stereotypes/git_subrepo/publish.rb +0 -29
  258. data/sub/avm-git/lib/avm/git/launcher_stereotypes/git_subrepo/warp.rb +0 -82
  259. data/sub/avm-git/lib/avm/git/launcher_stereotypes/git_subrepo.rb +0 -31
  260. data/sub/avm-git/lib/avm/git/launcher_stereotypes/provider.rb +0 -16
  261. data/sub/avm-git/lib/avm/git/organize/reference_update.rb +0 -32
  262. data/sub/avm-git/lib/avm/git/organize/repository.rb +0 -74
  263. data/sub/avm-git/lib/avm/git/revision_test.rb +0 -102
  264. data/sub/avm-git/lib/avm/git/runners/base/commit.rb +0 -98
  265. data/sub/avm-git/lib/avm/git/runners/base/deploy.rb +0 -108
  266. data/sub/avm-git/lib/avm/git/runners/base/dirty_files.rb +0 -42
  267. data/sub/avm-git/lib/avm/git/runners/base/organize.rb +0 -72
  268. data/sub/avm-git/lib/avm/git/runners/base/revisions_test.rb +0 -63
  269. data/sub/avm-git/lib/avm/git/runners/base/subrepo/check.rb +0 -45
  270. data/sub/avm-git/lib/avm/git/runners/base/subrepo/clone.rb +0 -80
  271. data/sub/avm-git/lib/avm/git/runners/base/subrepo/fix.rb +0 -69
  272. data/sub/avm-git/lib/avm/git/runners/base/subrepo.rb +0 -16
  273. data/sub/avm-git/lib/avm/git/runners/base.rb +0 -39
  274. data/sub/avm-git/lib/avm/git/scms/git/branch.rb +0 -28
  275. data/sub/avm-git/lib/avm/git/scms/git/branches.rb +0 -17
  276. data/sub/avm-git/lib/avm/git/scms/git/change_tracker.rb +0 -34
  277. data/sub/avm-git/lib/avm/git/scms/git/changed_file.rb +0 -25
  278. data/sub/avm-git/lib/avm/git/scms/git/changed_files.rb +0 -21
  279. data/sub/avm-git/lib/avm/git/scms/git/commit/deploy.rb +0 -38
  280. data/sub/avm-git/lib/avm/git/scms/git/commit/deploy_methods.rb +0 -24
  281. data/sub/avm-git/lib/avm/git/scms/git/commit.rb +0 -64
  282. data/sub/avm-git/lib/avm/git/scms/git/commit_dirty.rb +0 -32
  283. data/sub/avm-git/lib/avm/git/scms/git/commits.rb +0 -44
  284. data/sub/avm-git/lib/avm/git/scms/git/interval.rb +0 -28
  285. data/sub/avm-git/lib/avm/git/scms/git/milestones.rb +0 -18
  286. data/sub/avm-git/lib/avm/git/scms/git/remote.rb +0 -18
  287. data/sub/avm-git/lib/avm/git/scms/git/remotes.rb +0 -29
  288. data/sub/avm-git/lib/avm/git/scms/git/run_commit.rb +0 -54
  289. data/sub/avm-git/lib/avm/git/scms/git.rb +0 -46
  290. data/sub/avm-git/lib/avm/git/scms/git_sub_base/changed_file.rb +0 -19
  291. data/sub/avm-git/lib/avm/git/scms/git_sub_base/commit.rb +0 -23
  292. data/sub/avm-git/lib/avm/git/scms/git_sub_base/interval.rb +0 -23
  293. data/sub/avm-git/lib/avm/git/scms/git_sub_base.rb +0 -28
  294. data/sub/avm-git/lib/avm/git/scms/git_subrepo.rb +0 -28
  295. data/sub/avm-git/lib/avm/git/scms/git_subtree.rb +0 -29
  296. data/sub/avm-git/lib/avm/git/scms/provider.rb +0 -16
  297. data/sub/avm-git/lib/avm/git/subrepo_check/parent.rb +0 -48
  298. data/sub/avm-git/lib/avm/git/subrepo_check/remote.rb +0 -86
  299. data/sub/avm-git/lib/avm/git/subrepo_check/show_result.rb +0 -30
  300. data/sub/avm-git/lib/avm/git/subrepo_check.rb +0 -36
  301. data/sub/avm-git/lib/avm/git/subrepo_checks.rb +0 -57
  302. data/sub/avm-git/lib/avm/git/vendor/github.rb +0 -20
  303. data/sub/avm-git/lib/avm/git.rb +0 -15
  304. data/sub/avm-git/locale/en.yml +0 -6
  305. data/sub/avm-git/locale/pt-BR.yml +0 -6
  306. data/sub/avm-git/spec/lib/avm/git/commit/diff_tree_line_spec.rb +0 -11
  307. data/sub/avm-git/spec/lib/avm/git/commit/diff_tree_line_spec_files/add.source.out +0 -1
  308. data/sub/avm-git/spec/lib/avm/git/commit/diff_tree_line_spec_files/add.target.yaml +0 -7
  309. data/sub/avm-git/spec/lib/avm/git/commit/diff_tree_line_spec_files/modify.source.out +0 -1
  310. data/sub/avm-git/spec/lib/avm/git/commit/diff_tree_line_spec_files/modify.target.yaml +0 -7
  311. data/sub/avm-git/spec/lib/avm/git/commit/diff_tree_line_spec_files/remove.source.out +0 -1
  312. data/sub/avm-git/spec/lib/avm/git/commit/diff_tree_line_spec_files/remove.target.yaml +0 -7
  313. data/sub/avm-git/spec/lib/avm/git/commit/diff_tree_line_spec_files/rename.source.out +0 -2
  314. data/sub/avm-git/spec/lib/avm/git/commit/diff_tree_line_spec_files/rename.target.yaml +0 -13
  315. data/sub/avm-git/spec/lib/avm/git/commit/diff_tree_line_spec_files/rename_modify.source.out +0 -2
  316. data/sub/avm-git/spec/lib/avm/git/commit/diff_tree_line_spec_files/rename_modify.target.yaml +0 -13
  317. data/sub/avm-git/spec/lib/avm/git/commit_spec.rb +0 -54
  318. data/sub/avm-git/spec/lib/avm/git/launcher/base_spec.rb +0 -43
  319. data/sub/avm-git/spec/lib/avm/git/launcher_stereotypes/git_subrepo/publish_spec.rb +0 -82
  320. data/sub/avm-git/spec/lib/avm/git/launcher_stereotypes/git_subrepo/publish_spec_files/config.yml +0 -5
  321. data/sub/avm-git/spec/lib/avm/git/launcher_stereotypes/git_subrepo/publish_spec_settings.yml +0 -6
  322. data/sub/avm-git/spec/lib/avm/git/launcher_stereotypes/git_subrepo/warp_spec.rb +0 -53
  323. data/sub/avm-git/spec/lib/avm/git/launcher_stereotypes/git_subrepo/warp_spec_files/config.yml +0 -3
  324. data/sub/avm-git/spec/lib/avm/git/launcher_stereotypes/git_subrepo/warp_spec_settings.yml +0 -6
  325. data/sub/avm-git/spec/lib/avm/git/runners/base/deploy_spec.rb +0 -124
  326. data/sub/avm-git/spec/lib/avm/git/runners/base/deploy_spec_files/append1/stub3.txt.template +0 -1
  327. data/sub/avm-git/spec/lib/avm/git/runners/base/deploy_spec_files/append2/stub4.txt +0 -1
  328. data/sub/avm-git/spec/lib/avm/git/scms/git/commit/deploy_spec.rb +0 -89
  329. data/sub/avm-git/spec/lib/avm/git/scms/git_spec.rb +0 -5
  330. data/sub/avm-git/spec/lib/avm/git/scms/git_subrepo_spec.rb +0 -5
  331. data/sub/avm-git/spec/lib/avm/git/vendor/github_spec.rb +0 -21
  332. data/sub/avm-git/spec/meta/rubocop_spec.rb +0 -3
  333. data/sub/avm-git/spec/spec_helper.rb +0 -5
  334. data/sub/eac_git/.gitignore +0 -2
  335. data/sub/eac_git/.gitrepo +0 -7
  336. data/sub/eac_git/.rspec +0 -1
  337. data/sub/eac_git/.rubocop.yml +0 -3
  338. data/sub/eac_git/Gemfile +0 -8
  339. data/sub/eac_git/eac_git.gemspec +0 -21
  340. data/sub/eac_git/lib/eac_git/executables.rb +0 -45
  341. data/sub/eac_git/lib/eac_git/local/branch.rb +0 -45
  342. data/sub/eac_git/lib/eac_git/local/changed_file.rb +0 -53
  343. data/sub/eac_git/lib/eac_git/local/commit/archive.rb +0 -17
  344. data/sub/eac_git/lib/eac_git/local/commit/changed_file.rb +0 -43
  345. data/sub/eac_git/lib/eac_git/local/commit/diff_tree_line.rb +0 -32
  346. data/sub/eac_git/lib/eac_git/local/commit.rb +0 -71
  347. data/sub/eac_git/lib/eac_git/local/dirty_files.rb +0 -26
  348. data/sub/eac_git/lib/eac_git/local/log.rb +0 -14
  349. data/sub/eac_git/lib/eac_git/local/remote/push.rb +0 -33
  350. data/sub/eac_git/lib/eac_git/local/remote.rb +0 -71
  351. data/sub/eac_git/lib/eac_git/local/remotes.rb +0 -17
  352. data/sub/eac_git/lib/eac_git/local/subrepo.rb +0 -46
  353. data/sub/eac_git/lib/eac_git/local.rb +0 -124
  354. data/sub/eac_git/lib/eac_git/remote.rb +0 -20
  355. data/sub/eac_git/lib/eac_git/remote_like/ls_result.rb +0 -19
  356. data/sub/eac_git/lib/eac_git/remote_like.rb +0 -29
  357. data/sub/eac_git/lib/eac_git/rspec/setup.rb +0 -20
  358. data/sub/eac_git/lib/eac_git/rspec/stubbed_git_local_repo/directory.rb +0 -35
  359. data/sub/eac_git/lib/eac_git/rspec/stubbed_git_local_repo/file.rb +0 -21
  360. data/sub/eac_git/lib/eac_git/rspec/stubbed_git_local_repo/fs_object.rb +0 -25
  361. data/sub/eac_git/lib/eac_git/rspec/stubbed_git_local_repo/repository.rb +0 -30
  362. data/sub/eac_git/lib/eac_git/rspec/stubbed_git_local_repo.rb +0 -26
  363. data/sub/eac_git/lib/eac_git/rspec.rb +0 -6
  364. data/sub/eac_git/lib/eac_git/subrepo/configuration.rb +0 -40
  365. data/sub/eac_git/lib/eac_git/version.rb +0 -5
  366. data/sub/eac_git/lib/eac_git.rb +0 -7
  367. data/sub/eac_git/spec/lib/eac_git/executables_spec.rb +0 -11
  368. data/sub/eac_git/spec/lib/eac_git/local/commit/diff_tree_line_spec.rb +0 -11
  369. data/sub/eac_git/spec/lib/eac_git/local/commit/diff_tree_line_spec_files/add.source.out +0 -1
  370. data/sub/eac_git/spec/lib/eac_git/local/commit/diff_tree_line_spec_files/add.target.yaml +0 -7
  371. data/sub/eac_git/spec/lib/eac_git/local/commit/diff_tree_line_spec_files/modify.source.out +0 -1
  372. data/sub/eac_git/spec/lib/eac_git/local/commit/diff_tree_line_spec_files/modify.target.yaml +0 -7
  373. data/sub/eac_git/spec/lib/eac_git/local/commit/diff_tree_line_spec_files/remove.source.out +0 -1
  374. data/sub/eac_git/spec/lib/eac_git/local/commit/diff_tree_line_spec_files/remove.target.yaml +0 -7
  375. data/sub/eac_git/spec/lib/eac_git/local/commit/diff_tree_line_spec_files/rename.source.out +0 -2
  376. data/sub/eac_git/spec/lib/eac_git/local/commit/diff_tree_line_spec_files/rename.target.yaml +0 -13
  377. data/sub/eac_git/spec/lib/eac_git/local/commit/diff_tree_line_spec_files/rename_modify.source.out +0 -2
  378. data/sub/eac_git/spec/lib/eac_git/local/commit/diff_tree_line_spec_files/rename_modify.target.yaml +0 -13
  379. data/sub/eac_git/spec/lib/eac_git/local/commit_spec.rb +0 -56
  380. data/sub/eac_git/spec/lib/eac_git/local/dirty_files_spec.rb +0 -18
  381. data/sub/eac_git/spec/rubocop_spec.rb +0 -3
  382. data/sub/eac_git/spec/spec_helper.rb +0 -5
  383. data/sub/eac_git/vendor/git-subrepo/.fish.rc +0 -20
  384. data/sub/eac_git/vendor/git-subrepo/.gitattributes +0 -1
  385. data/sub/eac_git/vendor/git-subrepo/.github/workflows/test.yml +0 -29
  386. data/sub/eac_git/vendor/git-subrepo/.gitignore +0 -1
  387. data/sub/eac_git/vendor/git-subrepo/.gitrepo +0 -7
  388. data/sub/eac_git/vendor/git-subrepo/.rc +0 -32
  389. data/sub/eac_git/vendor/git-subrepo/Changes +0 -176
  390. data/sub/eac_git/vendor/git-subrepo/Intro.pod +0 -506
  391. data/sub/eac_git/vendor/git-subrepo/License +0 -21
  392. data/sub/eac_git/vendor/git-subrepo/Makefile +0 -122
  393. data/sub/eac_git/vendor/git-subrepo/Meta +0 -28
  394. data/sub/eac_git/vendor/git-subrepo/ReadMe.pod +0 -693
  395. data/sub/eac_git/vendor/git-subrepo/doc/comparison.swim +0 -35
  396. data/sub/eac_git/vendor/git-subrepo/doc/git-subrepo.swim +0 -612
  397. data/sub/eac_git/vendor/git-subrepo/doc/intro-to-subrepo.swim +0 -385
  398. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/.gitrepo +0 -12
  399. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/.travis.yml +0 -6
  400. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/Changes +0 -34
  401. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/License +0 -21
  402. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/Makefile +0 -70
  403. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/Meta +0 -28
  404. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/ReadMe.pod +0 -77
  405. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/bin/bash+ +0 -44
  406. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/doc/bash+.swim +0 -61
  407. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/lib/bash+.bash +0 -139
  408. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/man/man1/bash+.1 +0 -134
  409. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/man/man3/bash+.3 +0 -134
  410. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/test/base.t +0 -11
  411. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/test/die.t +0 -16
  412. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/test/fcopy.t +0 -21
  413. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/test/lib/foo/bar.bash +0 -3
  414. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/test/lib/foo/foo.bash +0 -3
  415. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/test/setup +0 -80
  416. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/test/shellcheck.t +0 -37
  417. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/test/source-bash+-std.t +0 -17
  418. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/test/source-bash+.t +0 -22
  419. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/test/use.t +0 -22
  420. data/sub/eac_git/vendor/git-subrepo/ext/bashplus/test/version-check.t +0 -23
  421. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/.gitrepo +0 -12
  422. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/.travis.yml +0 -6
  423. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/Changes +0 -26
  424. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/License +0 -21
  425. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/Makefile +0 -45
  426. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/Meta +0 -30
  427. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ReadMe.pod +0 -121
  428. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/doc/test-more.swim +0 -94
  429. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/.gitrepo +0 -12
  430. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/.travis.yml +0 -6
  431. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/Changes +0 -26
  432. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/License +0 -21
  433. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/Makefile +0 -70
  434. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/Meta +0 -28
  435. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/ReadMe.pod +0 -77
  436. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/bin/bash+ +0 -44
  437. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/doc/bash+.swim +0 -61
  438. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/lib/bash+.bash +0 -139
  439. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/man/man1/bash+.1 +0 -134
  440. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/man/man3/bash+.3 +0 -134
  441. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/test/base.t +0 -12
  442. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/test/die.t +0 -17
  443. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/test/fcopy.t +0 -22
  444. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/test/lib/foo/bar.bash +0 -3
  445. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/test/lib/foo/foo.bash +0 -3
  446. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/test/setup +0 -79
  447. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/test/shellcheck.t +0 -38
  448. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/test/source-bash+-std.t +0 -18
  449. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/test/source-bash+.t +0 -23
  450. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/bashplus/test/use.t +0 -23
  451. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/.gitrepo +0 -12
  452. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/.travis.yml +0 -5
  453. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/Changes +0 -26
  454. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/License +0 -21
  455. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/Makefile +0 -67
  456. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/Meta +0 -28
  457. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/ReadMe.pod +0 -66
  458. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/doc/test-tap.swim +0 -48
  459. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/lib/test/tap.bash +0 -157
  460. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/man/man3/test-tap.3 +0 -119
  461. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/test/bail_out.t +0 -13
  462. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/test/done.t +0 -10
  463. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/test/fail.t +0 -20
  464. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/test/fail_fast.t +0 -15
  465. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/test/helper.bash +0 -9
  466. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/test/pass.t +0 -9
  467. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/test/plan.t +0 -10
  468. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/test/shellcheck.t +0 -42
  469. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/test/skip_all.t +0 -20
  470. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/test/tap.t +0 -19
  471. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/test/test/bail.t +0 -14
  472. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/test/test/fail.t +0 -7
  473. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/test/test/fail_fast.t +0 -12
  474. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/test/test/skip-all-init.t +0 -8
  475. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/ext/test-tap-bash/test/test/skip-all-plan.t +0 -9
  476. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/lib/test/more.bash +0 -115
  477. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/man/man3/test-more.3 +0 -179
  478. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/test/fail.t +0 -34
  479. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/test/more.t +0 -28
  480. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/test/pass.t +0 -9
  481. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/test/setup +0 -8
  482. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/test/shellcheck.t +0 -35
  483. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/test/skip_all.t +0 -11
  484. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/test/test/fail1.t +0 -25
  485. data/sub/eac_git/vendor/git-subrepo/ext/test-more-bash/test/test/skip_all.t +0 -10
  486. data/sub/eac_git/vendor/git-subrepo/lib/git-subrepo +0 -2018
  487. data/sub/eac_git/vendor/git-subrepo/lib/git-subrepo.d/bash+.bash +0 -1
  488. data/sub/eac_git/vendor/git-subrepo/lib/git-subrepo.d/help-functions.bash +0 -338
  489. data/sub/eac_git/vendor/git-subrepo/man/man1/git-subrepo.1 +0 -727
  490. data/sub/eac_git/vendor/git-subrepo/note/0.4.0 +0 -12
  491. data/sub/eac_git/vendor/git-subrepo/note/AllGitCmds +0 -148
  492. data/sub/eac_git/vendor/git-subrepo/note/Cases +0 -32
  493. data/sub/eac_git/vendor/git-subrepo/note/Commands +0 -33
  494. data/sub/eac_git/vendor/git-subrepo/note/Dags +0 -199
  495. data/sub/eac_git/vendor/git-subrepo/note/Gists +0 -7
  496. data/sub/eac_git/vendor/git-subrepo/note/Links +0 -25
  497. data/sub/eac_git/vendor/git-subrepo/note/Plugins +0 -10
  498. data/sub/eac_git/vendor/git-subrepo/note/Spec +0 -39
  499. data/sub/eac_git/vendor/git-subrepo/note/Story1 +0 -57
  500. data/sub/eac_git/vendor/git-subrepo/note/ToDo +0 -55
  501. data/sub/eac_git/vendor/git-subrepo/note/design.swim +0 -137
  502. data/sub/eac_git/vendor/git-subrepo/note/design2.swim +0 -85
  503. data/sub/eac_git/vendor/git-subrepo/note/init-test +0 -38
  504. data/sub/eac_git/vendor/git-subrepo/note/pull-dance.txt +0 -18
  505. data/sub/eac_git/vendor/git-subrepo/note/recreate-rebase-conflict.sh +0 -56
  506. data/sub/eac_git/vendor/git-subrepo/note/subtree-rebase-fail-example/test.bash +0 -29
  507. data/sub/eac_git/vendor/git-subrepo/note/test-subrepo-push.sh +0 -69
  508. data/sub/eac_git/vendor/git-subrepo/note/test.sh +0 -58
  509. data/sub/eac_git/vendor/git-subrepo/pkg/bin/generate-completion.pl +0 -203
  510. data/sub/eac_git/vendor/git-subrepo/pkg/bin/generate-help-functions.pl +0 -87
  511. data/sub/eac_git/vendor/git-subrepo/share/completion.bash +0 -40
  512. data/sub/eac_git/vendor/git-subrepo/share/enable-completion.sh +0 -50
  513. data/sub/eac_git/vendor/git-subrepo/share/git-completion.bash +0 -2738
  514. data/sub/eac_git/vendor/git-subrepo/share/zsh-completion/_git-subrepo +0 -76
  515. data/sub/eac_git/vendor/git-subrepo/test/Dockerfile +0 -112
  516. data/sub/eac_git/vendor/git-subrepo/test/branch-all.t +0 -41
  517. data/sub/eac_git/vendor/git-subrepo/test/branch-rev-list-one-path.t +0 -42
  518. data/sub/eac_git/vendor/git-subrepo/test/branch-rev-list.t +0 -46
  519. data/sub/eac_git/vendor/git-subrepo/test/branch.t +0 -52
  520. data/sub/eac_git/vendor/git-subrepo/test/clean.t +0 -43
  521. data/sub/eac_git/vendor/git-subrepo/test/clone-annotated-tag.t +0 -45
  522. data/sub/eac_git/vendor/git-subrepo/test/clone.t +0 -102
  523. data/sub/eac_git/vendor/git-subrepo/test/compile.t +0 -19
  524. data/sub/eac_git/vendor/git-subrepo/test/config.t +0 -59
  525. data/sub/eac_git/vendor/git-subrepo/test/encode.t +0 -91
  526. data/sub/eac_git/vendor/git-subrepo/test/error.t +0 -171
  527. data/sub/eac_git/vendor/git-subrepo/test/fetch.t +0 -43
  528. data/sub/eac_git/vendor/git-subrepo/test/gitignore.t +0 -61
  529. data/sub/eac_git/vendor/git-subrepo/test/init.t +0 -63
  530. data/sub/eac_git/vendor/git-subrepo/test/issue29.t +0 -98
  531. data/sub/eac_git/vendor/git-subrepo/test/issue95.t +0 -98
  532. data/sub/eac_git/vendor/git-subrepo/test/issue96.t +0 -96
  533. data/sub/eac_git/vendor/git-subrepo/test/pull-all.t +0 -38
  534. data/sub/eac_git/vendor/git-subrepo/test/pull-merge.t +0 -114
  535. data/sub/eac_git/vendor/git-subrepo/test/pull-message.t +0 -88
  536. data/sub/eac_git/vendor/git-subrepo/test/pull-new-branch.t +0 -59
  537. data/sub/eac_git/vendor/git-subrepo/test/pull-ours.t +0 -90
  538. data/sub/eac_git/vendor/git-subrepo/test/pull-theirs.t +0 -82
  539. data/sub/eac_git/vendor/git-subrepo/test/pull-twice.t +0 -44
  540. data/sub/eac_git/vendor/git-subrepo/test/pull-worktree.t +0 -40
  541. data/sub/eac_git/vendor/git-subrepo/test/pull.t +0 -99
  542. data/sub/eac_git/vendor/git-subrepo/test/push-after-init.t +0 -52
  543. data/sub/eac_git/vendor/git-subrepo/test/push-after-push-no-changes.t +0 -27
  544. data/sub/eac_git/vendor/git-subrepo/test/push-force.t +0 -57
  545. data/sub/eac_git/vendor/git-subrepo/test/push-new-branch.t +0 -61
  546. data/sub/eac_git/vendor/git-subrepo/test/push-no-changes.t +0 -29
  547. data/sub/eac_git/vendor/git-subrepo/test/push-squash.t +0 -56
  548. data/sub/eac_git/vendor/git-subrepo/test/push.t +0 -177
  549. data/sub/eac_git/vendor/git-subrepo/test/rebase.t +0 -63
  550. data/sub/eac_git/vendor/git-subrepo/test/reclone.t +0 -52
  551. data/sub/eac_git/vendor/git-subrepo/test/repo/bar/HEAD +0 -1
  552. data/sub/eac_git/vendor/git-subrepo/test/repo/bar/config +0 -4
  553. data/sub/eac_git/vendor/git-subrepo/test/repo/bar/objects/1f/0c4b264caed0126814a0ede851a1e0b4e16ae6 +0 -0
  554. data/sub/eac_git/vendor/git-subrepo/test/repo/bar/objects/87/46903fdb1b9c2101377880125917c2e05b4d69 +0 -0
  555. data/sub/eac_git/vendor/git-subrepo/test/repo/bar/objects/94/c86ffc745232d89f78c6f895e11e71272518db +0 -0
  556. data/sub/eac_git/vendor/git-subrepo/test/repo/bar/objects/c6/76c57b6576743fa56278527aa60ebd2e202a7c +0 -0
  557. data/sub/eac_git/vendor/git-subrepo/test/repo/bar/objects/e6/9de29bb2d1d6434b8b29ae775ad8c2e48c5391 +0 -0
  558. data/sub/eac_git/vendor/git-subrepo/test/repo/bar/objects/f6/2a8ff3feadf39b0a98f1a86ec6d1eb33858ee9 +0 -0
  559. data/sub/eac_git/vendor/git-subrepo/test/repo/bar/refs/heads/master +0 -1
  560. data/sub/eac_git/vendor/git-subrepo/test/repo/bar/refs/tags/A +0 -1
  561. data/sub/eac_git/vendor/git-subrepo/test/repo/foo/HEAD +0 -1
  562. data/sub/eac_git/vendor/git-subrepo/test/repo/foo/config +0 -4
  563. data/sub/eac_git/vendor/git-subrepo/test/repo/foo/objects/a0/f4cdaaf533a936296cdebbed8206c3b9ededa8 +0 -0
  564. data/sub/eac_git/vendor/git-subrepo/test/repo/foo/objects/e2/1291a1ad392a9d4c51dd9586804f1467b28afd +0 -0
  565. data/sub/eac_git/vendor/git-subrepo/test/repo/foo/objects/e6/9de29bb2d1d6434b8b29ae775ad8c2e48c5391 +0 -0
  566. data/sub/eac_git/vendor/git-subrepo/test/repo/foo/refs/heads/master +0 -1
  567. data/sub/eac_git/vendor/git-subrepo/test/repo/init/HEAD +0 -1
  568. data/sub/eac_git/vendor/git-subrepo/test/repo/init/config +0 -5
  569. data/sub/eac_git/vendor/git-subrepo/test/repo/init/objects/11/523f5dcf03b4c89b592dc8a3d0308f68da2386 +0 -0
  570. data/sub/eac_git/vendor/git-subrepo/test/repo/init/objects/14/2addf8ec5f37334e837440122c62f2c68a29ad +0 -0
  571. data/sub/eac_git/vendor/git-subrepo/test/repo/init/objects/32/5180321750a21cd7a4e7ecda319e557a4f6a09 +0 -2
  572. data/sub/eac_git/vendor/git-subrepo/test/repo/init/objects/3d/918c6901c02f43af5d31779dd5e1f9166aeb36 +0 -0
  573. data/sub/eac_git/vendor/git-subrepo/test/repo/init/objects/3e/4cb596066dce63ba4d047abddb677389b65e19 +0 -0
  574. data/sub/eac_git/vendor/git-subrepo/test/repo/init/objects/4b/6e53022e7a04f07887697e4f3d7c377fd9822b +0 -0
  575. data/sub/eac_git/vendor/git-subrepo/test/repo/init/objects/58/931fc1bd559b59c41ea738fc7ad04f9ad01bd3 +0 -0
  576. data/sub/eac_git/vendor/git-subrepo/test/repo/init/objects/5e/c0c28e1b806f25efdca18fcf7a74b49c3755bd +0 -0
  577. data/sub/eac_git/vendor/git-subrepo/test/repo/init/objects/75/fa6584e748f57eff06eebdc55e9ac21d4fcbf2 +0 -1
  578. data/sub/eac_git/vendor/git-subrepo/test/repo/init/objects/80/2d5edbd5e1cb7fca82b5bd38e7c8a0a496fb20 +0 -0
  579. data/sub/eac_git/vendor/git-subrepo/test/repo/init/objects/94/7b3d714c38791e95ad6f928b48c98bb8708acd +0 -0
  580. data/sub/eac_git/vendor/git-subrepo/test/repo/init/objects/95/e1f2df3f4d5f3d7a60588c25a7ca8a913d3c2a +0 -1
  581. data/sub/eac_git/vendor/git-subrepo/test/repo/init/objects/b1/5f4a7666baf40d949548ead946a3370e273479 +0 -0
  582. data/sub/eac_git/vendor/git-subrepo/test/repo/init/objects/c3/ee8978c4c5d84c3b7d00ba8e5906933d027882 +0 -0
  583. data/sub/eac_git/vendor/git-subrepo/test/repo/init/objects/c8/b0bffbc405ef3fad7354ff833fbec36d67ddfa +0 -3
  584. data/sub/eac_git/vendor/git-subrepo/test/repo/init/objects/dd/8bdb934ec848137f011fe423b185505c343626 +0 -2
  585. data/sub/eac_git/vendor/git-subrepo/test/repo/init/objects/e2/9be58c767cfeb27235c995d293a7d71aac0135 +0 -2
  586. data/sub/eac_git/vendor/git-subrepo/test/repo/init/objects/ee/1224401fc6aac595145fa727dcf6706ac8aec1 +0 -1
  587. data/sub/eac_git/vendor/git-subrepo/test/repo/init/objects/f1/cc1a657b2e805c400f5dcaaa76bd29c6178b1b +0 -0
  588. data/sub/eac_git/vendor/git-subrepo/test/repo/init/refs/heads/master +0 -1
  589. data/sub/eac_git/vendor/git-subrepo/test/setup +0 -212
  590. data/sub/eac_git/vendor/git-subrepo/test/shellcheck.t +0 -37
  591. data/sub/eac_git/vendor/git-subrepo/test/status.t +0 -88
  592. data/sub/eac_git/vendor/git-subrepo/test/submodule.t +0 -45
  593. data/sub/eac_git/vendor/git-subrepo/test/zsh.t +0 -27
  594. /data/sub/{avm-git → avm-eac_redmine_base0}/.gitignore +0 -0
  595. /data/sub/{avm-eac_ruby_base1 → avm-eac_redmine_base0}/.rspec +0 -0
  596. /data/sub/{avm-eac_ruby_base1 → avm-eac_redmine_base0}/Gemfile +0 -0
@@ -1 +0,0 @@
1
- ../../ext/bashplus/lib/bash+.bash
@@ -1,338 +0,0 @@
1
- # DO NOT EDIT. This file generated by pkg/bin/generate-help-functions.pl.
2
-
3
- set -e
4
-
5
- help:all() {
6
- cat <<'...'
7
- branch branch <subdir>|--all [-f] [-F]
8
- clean clean <subdir>|--all|--ALL [-f]
9
- clone clone <repository> [<subdir>] [-b <branch>] [-f] [-m <msg>] [--file=<msg file>] [-e] [--method <merge|rebase>]
10
- commit commit <subdir> [<subrepo-ref>] [-m <msg>] [--file=<msg file>] [-e] [-f] [-F]
11
- config config <subdir> <option> [<value>] [-f]
12
- fetch fetch <subdir>|--force --all [-r <remote>] [-b <branch>]
13
- help help [<command>|--all]
14
- init init <subdir> [-r <remote>] [-b <branch>] [--method <merge|rebase>]
15
- pull pull <subdir>|--all [-M|-R|-f] [-m <msg>] [--file=<msg file>] [-e] [-b <branch>] [-r <remote>] [-u]
16
- push push <subdir>|--all [<branch>] [-m msg] [--file=<msg file>] [-r <remote>] [-b <branch>] [-M|-R] [-u] [-f] [-s] [-N]
17
- status status [<subdir>|--all|--ALL] [-F] [-q|-v]
18
- upgrade upgrade
19
- version version [-q|-v]
20
- ...
21
- }
22
-
23
- help:branch() {
24
- cat <<'...'
25
-
26
- Usage: git subrepo branch <subdir>|--all [-f] [-F]
27
-
28
-
29
- Create a branch with local subrepo commits.
30
-
31
- Scan the history of the mainline for all the commits that affect the `subdir`
32
- and create a new branch from them called `subrepo/<subdir>`.
33
-
34
- This is useful for doing `pull` and `push` commands by hand.
35
-
36
- Use the `--force` option to write over an existing `subrepo/<subdir>` branch.
37
-
38
- The `branch` command accepts the `--all`, `--fetch` and `--force` options.
39
- ...
40
- }
41
-
42
- help:clean() {
43
- cat <<'...'
44
-
45
- Usage: git subrepo clean <subdir>|--all|--ALL [-f]
46
-
47
-
48
- Remove artifacts created by `fetch` and `branch` commands.
49
-
50
- The `fetch` and `branch` operations (and other commands that call them)
51
- create temporary things like refs, branches and remotes. This command
52
- removes all those things.
53
-
54
- Use `--force` to remove refs. Refs are not removed by default because they
55
- are sometimes needed between commands.
56
-
57
- Use `--all` to clean up after all the current subrepos. Sometimes you might
58
- change to a branch where a subrepo doesn't exist, and then `--all` won't find
59
- it. Use `--ALL` to remove any artifacts that were ever created by subrepo.
60
-
61
- To remove ALL subrepo artifacts:
62
-
63
- git subrepo clean --ALL --force
64
-
65
- The `clean` command accepts the `--all`, `--ALL`, and `--force` options.
66
- ...
67
- }
68
-
69
- help:clone() {
70
- cat <<'...'
71
-
72
- Usage: git subrepo clone <repository> [<subdir>] [-b <branch>] [-f] [-m <msg>] [--file=<msg file>] [-e] [--method <merge|rebase>]
73
-
74
-
75
- Add a repository as a subrepo in a subdir of your repository.
76
-
77
- This is similar in feel to `git clone`. You just specify the remote repo
78
- url, and optionally a sub-directory and/or branch name. The repo will be
79
- fetched and merged into the subdir.
80
-
81
- The subrepo history is /squashed/ into a single commit that contains the
82
- reference information. This information is also stored in a special file
83
- called `<subdir>/.gitrepo`. The presence of this file indicates that the
84
- directory is a subrepo.
85
-
86
- All subsequent commands refer to the subrepo by the name of the /subdir/.
87
- From the subdir, all the current information about the subrepo can be
88
- obtained.
89
-
90
- The `--force` option will "reclone" (completely replace) an existing subdir.
91
-
92
- The `--method` option will decide how the join process between branches are
93
- performed. The default option is merge.
94
-
95
- The `clone` command accepts the `--branch=` `--edit`, `--file`, `--force`
96
- and `--message=` options.
97
- ...
98
- }
99
-
100
- help:commit() {
101
- cat <<'...'
102
-
103
- Usage: git subrepo commit <subdir> [<subrepo-ref>] [-m <msg>] [--file=<msg file>] [-e] [-f] [-F]
104
-
105
-
106
- Add subrepo branch to current history as a single commit.
107
-
108
- This command is generally used after a hand-merge. You have done a `subrepo
109
- branch` and merged (rebased) it with the upstream. This command takes the
110
- HEAD of that branch, puts its content into the subrepo subdir and adds a new
111
- commit for it to the top of your mainline history.
112
-
113
- This command requires that the upstream HEAD be in the `subrepo/<subdir>`
114
- branch history. That way the same branch can push upstream. Use the
115
- `--force` option to commit anyway.
116
-
117
- The `commit` command accepts the `--edit`, `--fetch`, `--file`, `--force`
118
- and `--message=` options.
119
- ...
120
- }
121
-
122
- help:config() {
123
- cat <<'...'
124
-
125
- Usage: git subrepo config <subdir> <option> [<value>] [-f]
126
-
127
-
128
- Read or update configuration values in the subdir/.gitrepo file.
129
-
130
- Because most of the values stored in the .gitrepo file are generated you
131
- will need to use `--force` if you want to change anything else then the
132
- `method` option.
133
-
134
- Example to update the `method` option for a subrepo:
135
-
136
- git subrepo config foo method rebase
137
- ...
138
- }
139
-
140
- help:fetch() {
141
- cat <<'...'
142
-
143
- Usage: git subrepo fetch <subdir>|--force --all [-r <remote>] [-b <branch>]
144
-
145
-
146
- Fetch the remote/upstream content for a subrepo.
147
-
148
- It will create a Git reference called `subrepo/<subdir>/fetch` that points at
149
- the same commit as `FETCH_HEAD`. It will also create a remote called
150
- `subrepo/<subdir>`. These are temporary and you can easily remove them with
151
- the subrepo `clean` command.
152
-
153
- The `fetch` command accepts the `--force`, `--all`, `--branch=` and `--remote=` options.
154
- ...
155
- }
156
-
157
- help:help() {
158
- cat <<'...'
159
-
160
- Usage: git subrepo help [<command>|--all]
161
-
162
-
163
- Same as `git help subrepo`. Will launch the manpage. For the shorter usage,
164
- use `git subrepo -h`.
165
-
166
- Use `git subrepo help <command>` to get help for a specific command. Use
167
- `--all` to get a summary of all commands.
168
-
169
- The `help` command accepts the `--all` option.
170
- ...
171
- }
172
-
173
- help:init() {
174
- cat <<'...'
175
-
176
- Usage: git subrepo init <subdir> [-r <remote>] [-b <branch>] [--method <merge|rebase>]
177
-
178
-
179
- Turn an existing subdirectory into a subrepo.
180
-
181
- If you want to expose a subdirectory of your project as a published subrepo,
182
- this command will do that. It will split out the content of a normal
183
- subdirectory into a branch and start tracking it as a subrepo. Afterwards
184
- your original repo will look exactly the same except that there will be a
185
- `<subdir>/.gitrepo` file.
186
-
187
- If you specify the `--remote` (and optionally the `--branch`) option, the
188
- values will be added to the `<subdir>/.gitrepo` file. The `--remote` option
189
- is the upstream URL, and the `--branch` option is the upstream branch to push
190
- to. These values will be needed to do a `git subrepo push` command, but they
191
- can be provided later on the `push` command (and saved to `<subdir>/.gitrepo`
192
- if you also specify the `--update` option).
193
-
194
- Note: You will need to create the empty upstream repo and push to it on your
195
- own, using `git subrepo push <subdir>`.
196
-
197
- The `--method` option will decide how the join process between branches
198
- are performed. The default option is merge.
199
-
200
- The `init` command accepts the `--branch=` and `--remote=` options.
201
- ...
202
- }
203
-
204
- help:pull() {
205
- cat <<'...'
206
-
207
- Usage: git subrepo pull <subdir>|--all [-M|-R|-f] [-m <msg>] [--file=<msg file>] [-e] [-b <branch>] [-r <remote>] [-u]
208
-
209
-
210
- Update the subrepo subdir with the latest upstream changes.
211
-
212
- The `pull` command fetches the latest content from the remote branch pointed
213
- to by the subrepo's `.gitrepo` file, and then tries to merge the changes into
214
- the corresponding subdir. It does this by making a branch of the local
215
- commits to the subdir and then merging or rebasing (see below) it with the
216
- fetched upstream content. After the merge, the content of the new branch
217
- replaces your subdir, the `.gitrepo` file is updated and a single 'pull'
218
- commit is added to your mainline history.
219
-
220
- The `pull` command will attempt to do the following commands in one go:
221
-
222
- git subrepo fetch <subdir>
223
- git subrepo branch <subdir>
224
- git merge/rebase subrepo/<subdir>/fetch subrepo/<subdir>
225
- git subrepo commit <subdir>
226
- # Only needed for a consequential push:
227
- git update-ref refs/subrepo/<subdir>/pull subrepo/<subdir>
228
-
229
- In other words, you could do all the above commands yourself, for the same
230
- effect. If any of the commands fail, subrepo will stop and tell you to finish
231
- this by hand. Generally a failure would be in the merge or rebase part, where
232
- conflicts can happen. Since Git has lots of ways to resolve conflicts to your
233
- personal tastes, the subrepo command defers to letting you do this by hand.
234
-
235
- When pulling new data, the method selected in clone/init is used. This has
236
- no effect on the final result of the pull, since it becomes a single commit.
237
- But it does affect the resulting `subrepo/<subdir>` branch, which is often
238
- used for a subrepo `push` command. See 'push' below for more information.
239
- If you want to change the method you can use the `config` command for this.
240
-
241
- When you pull you can assume a fast-forward strategy (default) or you can
242
- specify a `--rebase`, `--merge` or `--force` strategy. The latter is the same
243
- as a `clone --force` operation, using the current remote and branch.
244
-
245
- Like the `clone` command, `pull` will squash all the changes (since the last
246
- pull or clone) into one commit. This keeps your mainline history nice and
247
- clean. You can easily see the subrepo's history with the `git log` command:
248
-
249
- git log refs/subrepo/<subdir>/fetch
250
-
251
- The set of commands used above are described in detail below.
252
-
253
- The `pull` command accepts the `--all`, `--branch=`, `--edit`, `--file`,
254
- `--force`, `--message=`, `--remote=` and `--update` options.
255
- ...
256
- }
257
-
258
- help:push() {
259
- cat <<'...'
260
-
261
- Usage: git subrepo push <subdir>|--all [<branch>] [-m msg] [--file=<msg file>] [-r <remote>] [-b <branch>] [-M|-R] [-u] [-f] [-s] [-N]
262
-
263
-
264
- Push a properly merged subrepo branch back upstream.
265
-
266
- This command takes the subrepo branch from a successful pull command and
267
- pushes the history back to its designated remote and branch. You can also use
268
- the `branch` command and merge things yourself before pushing if you want to
269
- (although that is probably a rare use case).
270
-
271
- The `push` command requires a branch that has been properly merged/rebased
272
- with the upstream HEAD (unless the upstream HEAD is empty, which is common
273
- when doing a first `push` after an `init`). That means the upstream HEAD is
274
- one of the commits in the branch.
275
-
276
- By default the branch ref `refs/subrepo/<subdir>/pull` will be pushed, but
277
- you can specify a (properly merged) branch to push.
278
-
279
- After that, the `push` command just checks that the branch contains the
280
- upstream HEAD and then pushes it upstream.
281
-
282
- The `--force` option will do a force push. Force pushes are typically
283
- discouraged. Only use this option if you fully understand it. (The `--force`
284
- option will NOT check for a proper merge. ANY branch will be force pushed!)
285
-
286
- The `push` command accepts the `--all`, `--branch=`, `--dry-run`, `--file`,
287
- `--force`, `--merge`, `--message`, `--rebase`, `--remote=`, `--squash` and
288
- `--update` options.
289
- ...
290
- }
291
-
292
- help:status() {
293
- cat <<'...'
294
-
295
- Usage: git subrepo status [<subdir>|--all|--ALL] [-F] [-q|-v]
296
-
297
-
298
- Get the status of a subrepo. Uses the `--all` option by default. If the
299
- `--quiet` flag is used, just print the subrepo names, one per line.
300
-
301
- The `--verbose` option will show all the recent local and upstream commits.
302
-
303
- Use `--ALL` to show the subrepos of the subrepos (ie the "subsubrepos"), if
304
- any.
305
-
306
- The `status` command accepts the `--all`, `--ALL`, `--fetch`, `--quiet` and
307
- `--verbose` options.
308
- ...
309
- }
310
-
311
- help:upgrade() {
312
- cat <<'...'
313
-
314
- Usage: git subrepo upgrade
315
-
316
-
317
- Upgrade the `git-subrepo` software itself. This simply does a `git pull` on
318
- the git repository that the code is running from. It only works if you are on
319
- the `master` branch. It won't work if you installed `git-subrepo` using `make
320
- install`; in that case you'll need to `make install` from the latest code.
321
- ...
322
- }
323
-
324
- help:version() {
325
- cat <<'...'
326
-
327
- Usage: git subrepo version [-q|-v]
328
-
329
-
330
- This command will display version information about git-subrepo and its
331
- environment. For just the version number, use `git subrepo --version`. Use
332
- `--verbose` for more version info, and `--quiet` for less.
333
-
334
- The `version` command accepts the `--quiet` and `--verbose` options.
335
- ...
336
- }
337
-
338
- # vim: set sw=2 lisp: