git 5.0.0.beta.2 → 5.0.0.beta.4

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 (270) hide show
  1. checksums.yaml +4 -4
  2. data/.dockerignore +27 -0
  3. data/.github/copilot-instructions.md +3 -8
  4. data/.github/hooks/bin-setup-on-worktree.json +11 -0
  5. data/.github/hooks/run-bin-setup-once.sh +14 -0
  6. data/.github/skills/breaking-change-analysis/SKILL.md +6 -9
  7. data/.github/skills/ci-cd-troubleshooting/SKILL.md +2 -2
  8. data/.github/skills/command-implementation/REFERENCE.md +34 -33
  9. data/.github/skills/command-implementation/SKILL.md +5 -4
  10. data/.github/skills/command-test-conventions/SKILL.md +13 -9
  11. data/.github/skills/command-yard-documentation/SKILL.md +14 -6
  12. data/.github/skills/development-workflow/SKILL.md +20 -14
  13. data/.github/skills/facade-implementation/REFERENCE.md +19 -22
  14. data/.github/skills/facade-implementation/SKILL.md +0 -5
  15. data/.github/skills/facade-test-conventions/SKILL.md +4 -7
  16. data/.github/skills/facade-yard-documentation/SKILL.md +8 -2
  17. data/.github/skills/make-skill-template/SKILL.md +53 -3
  18. data/.github/skills/pr-readiness-review/SKILL.md +22 -2
  19. data/.github/skills/project-context/SKILL.md +16 -23
  20. data/.github/skills/pull-request-review/SKILL.md +2 -2
  21. data/.github/skills/rebase/SKILL.md +148 -0
  22. data/.github/skills/refactor-command-to-commandlineresult/SKILL.md +1 -1
  23. data/.github/skills/resolve-feedback/SKILL.md +288 -0
  24. data/.github/skills/review-arguments-dsl/CHECKLIST.md +3 -3
  25. data/.github/skills/reviewing-skills/SKILL.md +28 -3
  26. data/.github/skills/test-debugging/SKILL.md +20 -19
  27. data/.github/skills/yard-documentation/SKILL.md +671 -483
  28. data/.github/skills/yard-documentation/element-rules.md +162 -0
  29. data/.github/skills-deprecated/README.md +21 -0
  30. data/.github/{skills → skills-deprecated}/extract-command-from-lib/SKILL.md +9 -9
  31. data/.github/{skills → skills-deprecated}/extract-facade-from-base-lib/SKILL.md +12 -12
  32. data/.github/workflows/continuous_integration.yml +3 -2
  33. data/.rubocop.yml +7 -39
  34. data/.yard-lint.yml +75 -0
  35. data/CONTRIBUTING.md +186 -174
  36. data/Gemfile +17 -0
  37. data/README.md +86 -23
  38. data/Rakefile +3 -21
  39. data/UPGRADING.md +219 -70
  40. data/docker/test/Dockerfile +32 -0
  41. data/docker/test/docker-compose.yml +0 -0
  42. data/git.gemspec +3 -4
  43. data/lib/git/author.rb +20 -1
  44. data/lib/git/branch.rb +26 -6
  45. data/lib/git/branch_delete_failure.rb +3 -0
  46. data/lib/git/branch_delete_result.rb +6 -3
  47. data/lib/git/branch_info.rb +6 -6
  48. data/lib/git/command_line/base.rb +6 -13
  49. data/lib/git/command_line/capturing.rb +67 -10
  50. data/lib/git/command_line/result.rb +0 -8
  51. data/lib/git/command_line/streaming.rb +45 -5
  52. data/lib/git/command_line.rb +4 -3
  53. data/lib/git/commands/add.rb +61 -53
  54. data/lib/git/commands/am/abort.rb +2 -2
  55. data/lib/git/commands/am/apply.rb +109 -98
  56. data/lib/git/commands/am/continue.rb +2 -2
  57. data/lib/git/commands/am/quit.rb +2 -2
  58. data/lib/git/commands/am/retry.rb +4 -2
  59. data/lib/git/commands/am/show_current_patch.rb +1 -1
  60. data/lib/git/commands/am/skip.rb +2 -2
  61. data/lib/git/commands/am.rb +2 -2
  62. data/lib/git/commands/apply.rb +7 -2
  63. data/lib/git/commands/archive/list_formats.rb +3 -3
  64. data/lib/git/commands/archive.rb +7 -2
  65. data/lib/git/commands/arguments.rb +1370 -359
  66. data/lib/git/commands/base.rb +111 -13
  67. data/lib/git/commands/branch/copy.rb +29 -21
  68. data/lib/git/commands/branch/create.rb +72 -68
  69. data/lib/git/commands/branch/delete.rb +25 -17
  70. data/lib/git/commands/branch/list.rb +76 -60
  71. data/lib/git/commands/branch/move.rb +29 -21
  72. data/lib/git/commands/branch/set_upstream.rb +8 -8
  73. data/lib/git/commands/branch/show_current.rb +3 -3
  74. data/lib/git/commands/branch/unset_upstream.rb +4 -8
  75. data/lib/git/commands/branch.rb +2 -2
  76. data/lib/git/commands/cat_file/batch.rb +36 -20
  77. data/lib/git/commands/cat_file/filtered.rb +12 -12
  78. data/lib/git/commands/cat_file/raw.rb +13 -13
  79. data/lib/git/commands/cat_file.rb +4 -4
  80. data/lib/git/commands/checkout/branch.rb +7 -5
  81. data/lib/git/commands/checkout/files.rb +5 -4
  82. data/lib/git/commands/checkout.rb +4 -4
  83. data/lib/git/commands/checkout_index.rb +5 -4
  84. data/lib/git/commands/clean.rb +6 -4
  85. data/lib/git/commands/clone.rb +5 -4
  86. data/lib/git/commands/commit.rb +5 -4
  87. data/lib/git/commands/commit_tree.rb +5 -4
  88. data/lib/git/commands/config_option_syntax/add.rb +7 -4
  89. data/lib/git/commands/config_option_syntax/get.rb +9 -5
  90. data/lib/git/commands/config_option_syntax/get_all.rb +7 -4
  91. data/lib/git/commands/config_option_syntax/get_color.rb +8 -4
  92. data/lib/git/commands/config_option_syntax/get_color_bool.rb +7 -4
  93. data/lib/git/commands/config_option_syntax/get_regexp.rb +8 -4
  94. data/lib/git/commands/config_option_syntax/get_urlmatch.rb +8 -4
  95. data/lib/git/commands/config_option_syntax/list.rb +8 -4
  96. data/lib/git/commands/config_option_syntax/remove_section.rb +7 -2
  97. data/lib/git/commands/config_option_syntax/rename_section.rb +7 -2
  98. data/lib/git/commands/config_option_syntax/replace_all.rb +7 -2
  99. data/lib/git/commands/config_option_syntax/set.rb +7 -2
  100. data/lib/git/commands/config_option_syntax/unset.rb +7 -4
  101. data/lib/git/commands/config_option_syntax/unset_all.rb +7 -2
  102. data/lib/git/commands/describe.rb +5 -4
  103. data/lib/git/commands/diff.rb +13 -12
  104. data/lib/git/commands/diff_files.rb +7 -6
  105. data/lib/git/commands/diff_index.rb +10 -7
  106. data/lib/git/commands/fetch.rb +6 -4
  107. data/lib/git/commands/fsck.rb +6 -4
  108. data/lib/git/commands/gc.rb +6 -4
  109. data/lib/git/commands/grep.rb +6 -5
  110. data/lib/git/commands/init.rb +6 -4
  111. data/lib/git/commands/log.rb +287 -285
  112. data/lib/git/commands/ls_files.rb +69 -65
  113. data/lib/git/commands/ls_remote.rb +62 -56
  114. data/lib/git/commands/ls_tree.rb +50 -46
  115. data/lib/git/commands/maintenance/register.rb +25 -23
  116. data/lib/git/commands/maintenance/run.rb +7 -2
  117. data/lib/git/commands/maintenance/start.rb +7 -2
  118. data/lib/git/commands/maintenance/stop.rb +7 -2
  119. data/lib/git/commands/maintenance/unregister.rb +7 -2
  120. data/lib/git/commands/merge/abort.rb +2 -2
  121. data/lib/git/commands/merge/continue.rb +2 -2
  122. data/lib/git/commands/merge/quit.rb +2 -2
  123. data/lib/git/commands/merge/start.rb +7 -2
  124. data/lib/git/commands/merge.rb +2 -2
  125. data/lib/git/commands/merge_base.rb +7 -2
  126. data/lib/git/commands/mv.rb +7 -2
  127. data/lib/git/commands/name_rev.rb +7 -2
  128. data/lib/git/commands/pull.rb +7 -2
  129. data/lib/git/commands/push.rb +7 -2
  130. data/lib/git/commands/read_tree.rb +7 -2
  131. data/lib/git/commands/remote/add.rb +7 -2
  132. data/lib/git/commands/remote/get_url.rb +4 -2
  133. data/lib/git/commands/remote/list.rb +4 -2
  134. data/lib/git/commands/remote/prune.rb +4 -2
  135. data/lib/git/commands/remote/remove.rb +4 -2
  136. data/lib/git/commands/remote/rename.rb +4 -2
  137. data/lib/git/commands/remote/set_branches.rb +9 -2
  138. data/lib/git/commands/remote/set_head.rb +12 -5
  139. data/lib/git/commands/remote/set_url.rb +9 -2
  140. data/lib/git/commands/remote/set_url_add.rb +11 -2
  141. data/lib/git/commands/remote/set_url_delete.rb +9 -2
  142. data/lib/git/commands/remote/show.rb +18 -12
  143. data/lib/git/commands/remote/update.rb +19 -12
  144. data/lib/git/commands/remote.rb +2 -2
  145. data/lib/git/commands/repack.rb +67 -63
  146. data/lib/git/commands/reset.rb +51 -44
  147. data/lib/git/commands/rev_parse.rb +135 -128
  148. data/lib/git/commands/revert/abort.rb +2 -2
  149. data/lib/git/commands/revert/continue.rb +7 -2
  150. data/lib/git/commands/revert/quit.rb +2 -2
  151. data/lib/git/commands/revert/skip.rb +2 -2
  152. data/lib/git/commands/revert/start.rb +7 -2
  153. data/lib/git/commands/revert.rb +2 -2
  154. data/lib/git/commands/rm.rb +35 -36
  155. data/lib/git/commands/show.rb +1 -1
  156. data/lib/git/commands/show_ref/exclude_existing.rb +3 -4
  157. data/lib/git/commands/show_ref/exists.rb +15 -13
  158. data/lib/git/commands/show_ref/list.rb +39 -35
  159. data/lib/git/commands/show_ref/verify.rb +29 -27
  160. data/lib/git/commands/show_ref.rb +4 -4
  161. data/lib/git/commands/stash/apply.rb +31 -25
  162. data/lib/git/commands/stash/branch.rb +10 -8
  163. data/lib/git/commands/stash/clear.rb +7 -5
  164. data/lib/git/commands/stash/create.rb +10 -8
  165. data/lib/git/commands/stash/drop.rb +15 -9
  166. data/lib/git/commands/stash/list.rb +9 -5
  167. data/lib/git/commands/stash/pop.rb +21 -12
  168. data/lib/git/commands/stash/push.rb +20 -11
  169. data/lib/git/commands/stash/show.rb +21 -12
  170. data/lib/git/commands/stash/store.rb +19 -10
  171. data/lib/git/commands/stash.rb +2 -2
  172. data/lib/git/commands/status.rb +7 -2
  173. data/lib/git/commands/symbolic_ref/delete.rb +18 -14
  174. data/lib/git/commands/symbolic_ref/read.rb +24 -20
  175. data/lib/git/commands/symbolic_ref/update.rb +20 -17
  176. data/lib/git/commands/symbolic_ref.rb +4 -4
  177. data/lib/git/commands/tag/create.rb +45 -42
  178. data/lib/git/commands/tag/delete.rb +5 -3
  179. data/lib/git/commands/tag/list.rb +47 -44
  180. data/lib/git/commands/tag/verify.rb +12 -12
  181. data/lib/git/commands/tag.rb +2 -2
  182. data/lib/git/commands/update_ref/batch.rb +6 -1
  183. data/lib/git/commands/update_ref/delete.rb +19 -21
  184. data/lib/git/commands/update_ref/update.rb +22 -25
  185. data/lib/git/commands/update_ref.rb +4 -4
  186. data/lib/git/commands/version.rb +14 -11
  187. data/lib/git/commands/worktree/add.rb +50 -51
  188. data/lib/git/commands/worktree/list.rb +17 -17
  189. data/lib/git/commands/worktree/lock.rb +12 -12
  190. data/lib/git/commands/worktree/move.rb +16 -16
  191. data/lib/git/commands/worktree/prune.rb +2 -2
  192. data/lib/git/commands/worktree/remove.rb +2 -2
  193. data/lib/git/commands/worktree/repair.rb +2 -2
  194. data/lib/git/commands/worktree/unlock.rb +2 -2
  195. data/lib/git/commands/write_tree.rb +2 -2
  196. data/lib/git/commands.rb +4 -3
  197. data/lib/git/config.rb +47 -1
  198. data/lib/git/configuring.rb +89 -15
  199. data/lib/git/detached_head_info.rb +4 -1
  200. data/lib/git/diff.rb +2 -5
  201. data/lib/git/diff_file_numstat_info.rb +3 -1
  202. data/lib/git/diff_file_patch_info.rb +3 -1
  203. data/lib/git/diff_file_raw_info.rb +3 -1
  204. data/lib/git/diff_info.rb +8 -15
  205. data/lib/git/diff_path_status.rb +16 -3
  206. data/lib/git/diff_result.rb +3 -1
  207. data/lib/git/diff_stats.rb +15 -0
  208. data/lib/git/dirstat_info.rb +24 -8
  209. data/lib/git/encoding_utils.rb +32 -1
  210. data/lib/git/errors.rb +19 -9
  211. data/lib/git/escaped_path.rb +55 -3
  212. data/lib/git/execution_context/repository.rb +15 -0
  213. data/lib/git/execution_context.rb +76 -74
  214. data/lib/git/file_ref.rb +6 -3
  215. data/lib/git/fsck_object.rb +8 -0
  216. data/lib/git/fsck_result.rb +26 -15
  217. data/lib/git/log.rb +152 -5
  218. data/lib/git/object.rb +284 -8
  219. data/lib/git/parsers/branch.rb +18 -0
  220. data/lib/git/parsers/cat_file.rb +2 -2
  221. data/lib/git/parsers/diff.rb +213 -5
  222. data/lib/git/parsers/fsck.rb +11 -0
  223. data/lib/git/parsers/ls_remote.rb +1 -1
  224. data/lib/git/parsers/stash.rb +51 -0
  225. data/lib/git/parsers/tag.rb +38 -0
  226. data/lib/git/remote.rb +34 -2
  227. data/lib/git/repository/branching.rb +23 -21
  228. data/lib/git/repository/committing.rb +46 -6
  229. data/lib/git/repository/context_helpers.rb +45 -16
  230. data/lib/git/repository/diffing.rb +32 -23
  231. data/lib/git/repository/factories.rb +153 -28
  232. data/lib/git/repository/inspecting.rb +1 -1
  233. data/lib/git/repository/logging.rb +169 -30
  234. data/lib/git/repository/maintenance.rb +1 -1
  235. data/lib/git/repository/merging.rb +3 -3
  236. data/lib/git/repository/object_operations.rb +108 -14
  237. data/lib/git/repository/remote_operations.rb +150 -171
  238. data/lib/git/repository/shared_private.rb +7 -5
  239. data/lib/git/repository/staging.rb +36 -12
  240. data/lib/git/repository/stashing.rb +16 -16
  241. data/lib/git/repository/status_operations.rb +1 -1
  242. data/lib/git/repository/worktree_operations.rb +1 -1
  243. data/lib/git/repository.rb +287 -6
  244. data/lib/git/stash.rb +16 -21
  245. data/lib/git/stash_info.rb +4 -4
  246. data/lib/git/stashes.rb +20 -26
  247. data/lib/git/status.rb +25 -13
  248. data/lib/git/tag_delete_failure.rb +3 -0
  249. data/lib/git/tag_delete_result.rb +6 -3
  250. data/lib/git/tag_info.rb +1 -0
  251. data/lib/git/url.rb +12 -5
  252. data/lib/git/version.rb +6 -4
  253. data/lib/git/version_constraint.rb +4 -0
  254. data/lib/git.rb +400 -314
  255. data/redesign/3_architecture_implementation.md +81 -30
  256. data/redesign/Phase 4 - Step A.md +6 -0
  257. data/redesign/Phase 4 - Step B.md +921 -0
  258. data/redesign/Phase 4 - Step C.md +833 -0
  259. data/redesign/c1a-public-api-scope.tsv +256 -0
  260. data/redesign/phase-4-step-b-test-audit.tsv +485 -0
  261. data/tasks/yard.rake +24 -17
  262. metadata +24 -58
  263. data/commitlint.test +0 -4
  264. data/lib/git/args_builder.rb +0 -103
  265. data/lib/git/command_line_result.rb +0 -8
  266. data/lib/git/deprecation.rb +0 -9
  267. data/lib/git/repository/configuring.rb +0 -351
  268. data/tasks/test.rake +0 -25
  269. /data/.github/{skills → skills-deprecated}/extract-facade-from-base-lib/KEYWORD_ARG_REMEDIATION.md +0 -0
  270. /data/.github/{skills → skills-deprecated}/review-backward-compatibility/SKILL.md +0 -0
@@ -0,0 +1,256 @@
1
+ constant_name type scope category api_private_current defining_file notes
2
+ Git module public entry-point no lib/git.rb Primary entry point module with .open, .clone, .init, .bare, .git_version factory methods
3
+ Git::Author class public value-object no lib/git/author.rb Public value object returned from facade methods
4
+ Git::Branch class public return-type no lib/git/branch.rb Public return type from facade methods
5
+ Git::BranchDeleteFailure class public value-object no lib/git/branch_delete_failure.rb Public value object returned from facade methods
6
+ Git::BranchDeleteResult class public value-object no lib/git/branch_delete_result.rb Public value object returned from facade methods
7
+ Git::BranchInfo class public value-object no lib/git/branch_info.rb Public value object returned from facade methods
8
+ Git::Branches class public return-type no lib/git/branches.rb Public return type from facade methods
9
+ Git::CommandLine module internal plumbing no lib/git/command_line.rb Internal command-line execution infrastructure; not part of public API
10
+ Git::CommandLine::Base class internal plumbing no lib/git/command_line/base.rb Internal command-line execution infrastructure; not part of public API
11
+ Git::CommandLine::Capturing class internal plumbing no lib/git/command_line/capturing.rb Internal command-line execution infrastructure; not part of public API
12
+ Git::CommandLine::Result class internal plumbing no lib/git/command_line/result.rb Internal command-line execution infrastructure; not part of public API
13
+ Git::CommandLine::Streaming class internal plumbing no lib/git/command_line/streaming.rb Internal command-line execution infrastructure; not part of public API
14
+ Git::CommandLineError class public error no lib/git/errors.rb Public exception class raised by facade methods
15
+ Git::Commands module internal command-wrapper yes lib/git/commands.rb Command implementation detail; not part of public API
16
+ Git::Commands::Add class internal command-wrapper yes lib/git/commands/add.rb Command implementation detail; not part of public API
17
+ Git::Commands::Am class internal command-wrapper yes lib/git/commands/am.rb Command implementation detail; not part of public API
18
+ Git::Commands::Am::Abort class internal command-wrapper yes lib/git/commands/am/abort.rb Command implementation detail; not part of public API
19
+ Git::Commands::Am::Apply class internal command-wrapper yes lib/git/commands/am/apply.rb Command implementation detail; not part of public API
20
+ Git::Commands::Am::Continue class internal command-wrapper yes lib/git/commands/am/continue.rb Command implementation detail; not part of public API
21
+ Git::Commands::Am::Quit class internal command-wrapper yes lib/git/commands/am/quit.rb Command implementation detail; not part of public API
22
+ Git::Commands::Am::Retry class internal command-wrapper yes lib/git/commands/am/retry.rb Command implementation detail; not part of public API
23
+ Git::Commands::Am::ShowCurrentPatch class internal command-wrapper yes lib/git/commands/am/show_current_patch.rb Command implementation detail; not part of public API
24
+ Git::Commands::Am::Skip class internal command-wrapper yes lib/git/commands/am/skip.rb Command implementation detail; not part of public API
25
+ Git::Commands::Apply class internal command-wrapper yes lib/git/commands/apply.rb Command implementation detail; not part of public API
26
+ Git::Commands::Archive class internal command-wrapper yes lib/git/commands/archive.rb Command implementation detail; not part of public API
27
+ Git::Commands::Archive::ListFormats class internal command-wrapper yes lib/git/commands/archive/list_formats.rb Command implementation detail; not part of public API
28
+ Git::Commands::Arguments module internal command-arguments yes lib/git/commands/arguments.rb Command implementation detail; not part of public API
29
+ Git::Commands::Arguments::Bound class internal command-arguments yes lib/git/commands/arguments.rb Command implementation detail; not part of public API
30
+ Git::Commands::Base class internal command-wrapper yes lib/git/commands/base.rb Command implementation detail; not part of public API
31
+ Git::Commands::Branch class internal command-wrapper yes lib/git/commands/branch.rb Command implementation detail; not part of public API
32
+ Git::Commands::Branch::Copy class internal command-wrapper yes lib/git/commands/branch/copy.rb Command implementation detail; not part of public API
33
+ Git::Commands::Branch::Create class internal command-wrapper yes lib/git/commands/branch/create.rb Command implementation detail; not part of public API
34
+ Git::Commands::Branch::Delete class internal command-wrapper yes lib/git/commands/branch/delete.rb Command implementation detail; not part of public API
35
+ Git::Commands::Branch::List class internal command-wrapper yes lib/git/commands/branch/list.rb Command implementation detail; not part of public API
36
+ Git::Commands::Branch::Move class internal command-wrapper yes lib/git/commands/branch/move.rb Command implementation detail; not part of public API
37
+ Git::Commands::Branch::SetUpstream class internal command-wrapper yes lib/git/commands/branch/set_upstream.rb Command implementation detail; not part of public API
38
+ Git::Commands::Branch::ShowCurrent class internal command-wrapper yes lib/git/commands/branch/show_current.rb Command implementation detail; not part of public API
39
+ Git::Commands::Branch::UnsetUpstream class internal command-wrapper yes lib/git/commands/branch/unset_upstream.rb Command implementation detail; not part of public API
40
+ Git::Commands::CatFile class internal command-wrapper yes lib/git/commands/cat_file.rb Command implementation detail; not part of public API
41
+ Git::Commands::CatFile::Batch class internal command-wrapper yes lib/git/commands/cat_file/batch.rb Command implementation detail; not part of public API
42
+ Git::Commands::CatFile::Filtered class internal command-wrapper yes lib/git/commands/cat_file/filtered.rb Command implementation detail; not part of public API
43
+ Git::Commands::CatFile::Raw class internal command-wrapper yes lib/git/commands/cat_file/raw.rb Command implementation detail; not part of public API
44
+ Git::Commands::Checkout class internal command-wrapper yes lib/git/commands/checkout.rb Command implementation detail; not part of public API
45
+ Git::Commands::Checkout::Branch class internal command-wrapper yes lib/git/commands/checkout/branch.rb Command implementation detail; not part of public API
46
+ Git::Commands::Checkout::Files class internal command-wrapper yes lib/git/commands/checkout/files.rb Command implementation detail; not part of public API
47
+ Git::Commands::CheckoutIndex class internal command-wrapper yes lib/git/commands/checkout_index.rb Command implementation detail; not part of public API
48
+ Git::Commands::Clean class internal command-wrapper yes lib/git/commands/clean.rb Command implementation detail; not part of public API
49
+ Git::Commands::Clone class internal command-wrapper yes lib/git/commands/clone.rb Command implementation detail; not part of public API
50
+ Git::Commands::Commit class internal command-wrapper yes lib/git/commands/commit.rb Command implementation detail; not part of public API
51
+ Git::Commands::CommitTree class internal command-wrapper yes lib/git/commands/commit_tree.rb Command implementation detail; not part of public API
52
+ Git::Commands::ConfigOptionSyntax class internal command-wrapper yes lib/git/commands/config_option_syntax.rb Command implementation detail; not part of public API
53
+ Git::Commands::ConfigOptionSyntax::Add class internal command-wrapper yes lib/git/commands/config_option_syntax/add.rb Command implementation detail; not part of public API
54
+ Git::Commands::ConfigOptionSyntax::Get class internal command-wrapper yes lib/git/commands/config_option_syntax/get.rb Command implementation detail; not part of public API
55
+ Git::Commands::ConfigOptionSyntax::GetAll class internal command-wrapper yes lib/git/commands/config_option_syntax/get_all.rb Command implementation detail; not part of public API
56
+ Git::Commands::ConfigOptionSyntax::GetColor class internal command-wrapper yes lib/git/commands/config_option_syntax/get_color.rb Command implementation detail; not part of public API
57
+ Git::Commands::ConfigOptionSyntax::GetColorBool class internal command-wrapper yes lib/git/commands/config_option_syntax/get_color_bool.rb Command implementation detail; not part of public API
58
+ Git::Commands::ConfigOptionSyntax::GetRegexp class internal command-wrapper yes lib/git/commands/config_option_syntax/get_regexp.rb Command implementation detail; not part of public API
59
+ Git::Commands::ConfigOptionSyntax::GetUrlmatch class internal command-wrapper yes lib/git/commands/config_option_syntax/get_urlmatch.rb Command implementation detail; not part of public API
60
+ Git::Commands::ConfigOptionSyntax::List class internal command-wrapper yes lib/git/commands/config_option_syntax/list.rb Command implementation detail; not part of public API
61
+ Git::Commands::ConfigOptionSyntax::RemoveSection class internal command-wrapper yes lib/git/commands/config_option_syntax/remove_section.rb Command implementation detail; not part of public API
62
+ Git::Commands::ConfigOptionSyntax::RenameSection class internal command-wrapper yes lib/git/commands/config_option_syntax/rename_section.rb Command implementation detail; not part of public API
63
+ Git::Commands::ConfigOptionSyntax::ReplaceAll class internal command-wrapper yes lib/git/commands/config_option_syntax/replace_all.rb Command implementation detail; not part of public API
64
+ Git::Commands::ConfigOptionSyntax::Set class internal command-wrapper yes lib/git/commands/config_option_syntax/set.rb Command implementation detail; not part of public API
65
+ Git::Commands::ConfigOptionSyntax::Unset class internal command-wrapper yes lib/git/commands/config_option_syntax/unset.rb Command implementation detail; not part of public API
66
+ Git::Commands::ConfigOptionSyntax::UnsetAll class internal command-wrapper yes lib/git/commands/config_option_syntax/unset_all.rb Command implementation detail; not part of public API
67
+ Git::Commands::Describe class internal command-wrapper yes lib/git/commands/describe.rb Command implementation detail; not part of public API
68
+ Git::Commands::Diff class internal command-wrapper yes lib/git/commands/diff.rb Command implementation detail; not part of public API
69
+ Git::Commands::DiffFiles class internal command-wrapper yes lib/git/commands/diff_files.rb Command implementation detail; not part of public API
70
+ Git::Commands::DiffIndex class internal command-wrapper yes lib/git/commands/diff_index.rb Command implementation detail; not part of public API
71
+ Git::Commands::Fetch class internal command-wrapper yes lib/git/commands/fetch.rb Command implementation detail; not part of public API
72
+ Git::Commands::Fsck class internal command-wrapper yes lib/git/commands/fsck.rb Command implementation detail; not part of public API
73
+ Git::Commands::Gc class internal command-wrapper yes lib/git/commands/gc.rb Command implementation detail; not part of public API
74
+ Git::Commands::Grep class internal command-wrapper yes lib/git/commands/grep.rb Command implementation detail; not part of public API
75
+ Git::Commands::Init class internal command-wrapper yes lib/git/commands/init.rb Command implementation detail; not part of public API
76
+ Git::Commands::Log class internal command-wrapper yes lib/git/commands/log.rb Command implementation detail; not part of public API
77
+ Git::Commands::LsFiles class internal command-wrapper yes lib/git/commands/ls_files.rb Command implementation detail; not part of public API
78
+ Git::Commands::LsRemote class internal command-wrapper yes lib/git/commands/ls_remote.rb Command implementation detail; not part of public API
79
+ Git::Commands::LsTree class internal command-wrapper yes lib/git/commands/ls_tree.rb Command implementation detail; not part of public API
80
+ Git::Commands::Maintenance class internal command-wrapper yes lib/git/commands/maintenance.rb Command implementation detail; not part of public API
81
+ Git::Commands::Maintenance::Register class internal command-wrapper yes lib/git/commands/maintenance/register.rb Command implementation detail; not part of public API
82
+ Git::Commands::Maintenance::Run class internal command-wrapper yes lib/git/commands/maintenance/run.rb Command implementation detail; not part of public API
83
+ Git::Commands::Maintenance::Start class internal command-wrapper yes lib/git/commands/maintenance/start.rb Command implementation detail; not part of public API
84
+ Git::Commands::Maintenance::Stop class internal command-wrapper yes lib/git/commands/maintenance/stop.rb Command implementation detail; not part of public API
85
+ Git::Commands::Maintenance::Unregister class internal command-wrapper yes lib/git/commands/maintenance/unregister.rb Command implementation detail; not part of public API
86
+ Git::Commands::Merge class internal command-wrapper yes lib/git/commands/merge.rb Command implementation detail; not part of public API
87
+ Git::Commands::Merge::Abort class internal command-wrapper yes lib/git/commands/merge/abort.rb Command implementation detail; not part of public API
88
+ Git::Commands::Merge::Continue class internal command-wrapper yes lib/git/commands/merge/continue.rb Command implementation detail; not part of public API
89
+ Git::Commands::Merge::Quit class internal command-wrapper yes lib/git/commands/merge/quit.rb Command implementation detail; not part of public API
90
+ Git::Commands::Merge::Start class internal command-wrapper yes lib/git/commands/merge/start.rb Command implementation detail; not part of public API
91
+ Git::Commands::MergeBase class internal command-wrapper yes lib/git/commands/merge_base.rb Command implementation detail; not part of public API
92
+ Git::Commands::Mv class internal command-wrapper yes lib/git/commands/mv.rb Command implementation detail; not part of public API
93
+ Git::Commands::NameRev class internal command-wrapper yes lib/git/commands/name_rev.rb Command implementation detail; not part of public API
94
+ Git::Commands::OperandAllocator class internal command-arguments yes lib/git/commands/arguments.rb Command implementation detail; not part of public API
95
+ Git::Commands::OperandAllocator::LeadingAllocationState class internal command-arguments yes lib/git/commands/arguments.rb Command implementation detail; not part of public API
96
+ Git::Commands::Pull class internal command-wrapper yes lib/git/commands/pull.rb Command implementation detail; not part of public API
97
+ Git::Commands::Push class internal command-wrapper yes lib/git/commands/push.rb Command implementation detail; not part of public API
98
+ Git::Commands::ReadTree class internal command-wrapper yes lib/git/commands/read_tree.rb Command implementation detail; not part of public API
99
+ Git::Commands::Remote class internal command-wrapper yes lib/git/commands/remote.rb Command implementation detail; not part of public API
100
+ Git::Commands::Remote::Add class internal command-wrapper yes lib/git/commands/remote/add.rb Command implementation detail; not part of public API
101
+ Git::Commands::Remote::GetUrl class internal command-wrapper yes lib/git/commands/remote/get_url.rb Command implementation detail; not part of public API
102
+ Git::Commands::Remote::List class internal command-wrapper yes lib/git/commands/remote/list.rb Command implementation detail; not part of public API
103
+ Git::Commands::Remote::Prune class internal command-wrapper yes lib/git/commands/remote/prune.rb Command implementation detail; not part of public API
104
+ Git::Commands::Remote::Remove class internal command-wrapper yes lib/git/commands/remote/remove.rb Command implementation detail; not part of public API
105
+ Git::Commands::Remote::Rename class internal command-wrapper yes lib/git/commands/remote/rename.rb Command implementation detail; not part of public API
106
+ Git::Commands::Remote::SetBranches class internal command-wrapper yes lib/git/commands/remote/set_branches.rb Command implementation detail; not part of public API
107
+ Git::Commands::Remote::SetHead class internal command-wrapper yes lib/git/commands/remote/set_head.rb Command implementation detail; not part of public API
108
+ Git::Commands::Remote::SetUrl class internal command-wrapper yes lib/git/commands/remote/set_url.rb Command implementation detail; not part of public API
109
+ Git::Commands::Remote::SetUrlAdd class internal command-wrapper yes lib/git/commands/remote/set_url_add.rb Command implementation detail; not part of public API
110
+ Git::Commands::Remote::SetUrlDelete class internal command-wrapper yes lib/git/commands/remote/set_url_delete.rb Command implementation detail; not part of public API
111
+ Git::Commands::Remote::Show class internal command-wrapper yes lib/git/commands/remote/show.rb Command implementation detail; not part of public API
112
+ Git::Commands::Remote::Update class internal command-wrapper yes lib/git/commands/remote/update.rb Command implementation detail; not part of public API
113
+ Git::Commands::Repack class internal command-wrapper yes lib/git/commands/repack.rb Command implementation detail; not part of public API
114
+ Git::Commands::Reset class internal command-wrapper yes lib/git/commands/reset.rb Command implementation detail; not part of public API
115
+ Git::Commands::RevParse class internal command-wrapper yes lib/git/commands/rev_parse.rb Command implementation detail; not part of public API
116
+ Git::Commands::Revert class internal command-wrapper yes lib/git/commands/revert.rb Command implementation detail; not part of public API
117
+ Git::Commands::Revert::Abort class internal command-wrapper yes lib/git/commands/revert/abort.rb Command implementation detail; not part of public API
118
+ Git::Commands::Revert::Continue class internal command-wrapper yes lib/git/commands/revert/continue.rb Command implementation detail; not part of public API
119
+ Git::Commands::Revert::Quit class internal command-wrapper yes lib/git/commands/revert/quit.rb Command implementation detail; not part of public API
120
+ Git::Commands::Revert::Skip class internal command-wrapper yes lib/git/commands/revert/skip.rb Command implementation detail; not part of public API
121
+ Git::Commands::Revert::Start class internal command-wrapper yes lib/git/commands/revert/start.rb Command implementation detail; not part of public API
122
+ Git::Commands::Rm class internal command-wrapper yes lib/git/commands/rm.rb Command implementation detail; not part of public API
123
+ Git::Commands::Show class internal command-wrapper yes lib/git/commands/show.rb Command implementation detail; not part of public API
124
+ Git::Commands::ShowRef class internal command-wrapper yes lib/git/commands/show_ref.rb Command implementation detail; not part of public API
125
+ Git::Commands::ShowRef::ExcludeExisting class internal command-wrapper yes lib/git/commands/show_ref/exclude_existing.rb Command implementation detail; not part of public API
126
+ Git::Commands::ShowRef::Exists class internal command-wrapper yes lib/git/commands/show_ref/exists.rb Command implementation detail; not part of public API
127
+ Git::Commands::ShowRef::List class internal command-wrapper yes lib/git/commands/show_ref/list.rb Command implementation detail; not part of public API
128
+ Git::Commands::ShowRef::Verify class internal command-wrapper yes lib/git/commands/show_ref/verify.rb Command implementation detail; not part of public API
129
+ Git::Commands::Stash class internal command-wrapper yes lib/git/commands/stash.rb Command implementation detail; not part of public API
130
+ Git::Commands::Stash::Apply class internal command-wrapper yes lib/git/commands/stash/apply.rb Command implementation detail; not part of public API
131
+ Git::Commands::Stash::Branch class internal command-wrapper yes lib/git/commands/stash/branch.rb Command implementation detail; not part of public API
132
+ Git::Commands::Stash::Clear class internal command-wrapper yes lib/git/commands/stash/clear.rb Command implementation detail; not part of public API
133
+ Git::Commands::Stash::Create class internal command-wrapper yes lib/git/commands/stash/create.rb Command implementation detail; not part of public API
134
+ Git::Commands::Stash::Drop class internal command-wrapper yes lib/git/commands/stash/drop.rb Command implementation detail; not part of public API
135
+ Git::Commands::Stash::List class internal command-wrapper yes lib/git/commands/stash/list.rb Command implementation detail; not part of public API
136
+ Git::Commands::Stash::Pop class internal command-wrapper yes lib/git/commands/stash/pop.rb Command implementation detail; not part of public API
137
+ Git::Commands::Stash::Push class internal command-wrapper yes lib/git/commands/stash/push.rb Command implementation detail; not part of public API
138
+ Git::Commands::Stash::Show class internal command-wrapper yes lib/git/commands/stash/show.rb Command implementation detail; not part of public API
139
+ Git::Commands::Stash::Store class internal command-wrapper yes lib/git/commands/stash/store.rb Command implementation detail; not part of public API
140
+ Git::Commands::Status class internal command-wrapper yes lib/git/commands/status.rb Command implementation detail; not part of public API
141
+ Git::Commands::SymbolicRef class internal command-wrapper yes lib/git/commands/symbolic_ref.rb Command implementation detail; not part of public API
142
+ Git::Commands::SymbolicRef::Delete class internal command-wrapper yes lib/git/commands/symbolic_ref/delete.rb Command implementation detail; not part of public API
143
+ Git::Commands::SymbolicRef::Read class internal command-wrapper yes lib/git/commands/symbolic_ref/read.rb Command implementation detail; not part of public API
144
+ Git::Commands::SymbolicRef::Update class internal command-wrapper yes lib/git/commands/symbolic_ref/update.rb Command implementation detail; not part of public API
145
+ Git::Commands::Tag class internal command-wrapper yes lib/git/commands/tag.rb Command implementation detail; not part of public API
146
+ Git::Commands::Tag::Create class internal command-wrapper yes lib/git/commands/tag/create.rb Command implementation detail; not part of public API
147
+ Git::Commands::Tag::Delete class internal command-wrapper yes lib/git/commands/tag/delete.rb Command implementation detail; not part of public API
148
+ Git::Commands::Tag::List class internal command-wrapper yes lib/git/commands/tag/list.rb Command implementation detail; not part of public API
149
+ Git::Commands::Tag::Verify class internal command-wrapper yes lib/git/commands/tag/verify.rb Command implementation detail; not part of public API
150
+ Git::Commands::UpdateRef class internal command-wrapper yes lib/git/commands/update_ref.rb Command implementation detail; not part of public API
151
+ Git::Commands::UpdateRef::Batch class internal command-wrapper yes lib/git/commands/update_ref/batch.rb Command implementation detail; not part of public API
152
+ Git::Commands::UpdateRef::Delete class internal command-wrapper yes lib/git/commands/update_ref/delete.rb Command implementation detail; not part of public API
153
+ Git::Commands::UpdateRef::Update class internal command-wrapper yes lib/git/commands/update_ref/update.rb Command implementation detail; not part of public API
154
+ Git::Commands::Version class internal command-wrapper yes lib/git/commands/version.rb Command implementation detail; not part of public API
155
+ Git::Commands::Worktree class internal command-wrapper yes lib/git/commands/worktree.rb Command implementation detail; not part of public API
156
+ Git::Commands::Worktree::Add class internal command-wrapper yes lib/git/commands/worktree/add.rb Command implementation detail; not part of public API
157
+ Git::Commands::Worktree::List class internal command-wrapper yes lib/git/commands/worktree/list.rb Command implementation detail; not part of public API
158
+ Git::Commands::Worktree::Lock class internal command-wrapper yes lib/git/commands/worktree/lock.rb Command implementation detail; not part of public API
159
+ Git::Commands::Worktree::ManagementBase class internal command-wrapper yes lib/git/commands/worktree/management_base.rb Command implementation detail; not part of public API
160
+ Git::Commands::Worktree::Move class internal command-wrapper yes lib/git/commands/worktree/move.rb Command implementation detail; not part of public API
161
+ Git::Commands::Worktree::Prune class internal command-wrapper yes lib/git/commands/worktree/prune.rb Command implementation detail; not part of public API
162
+ Git::Commands::Worktree::Remove class internal command-wrapper yes lib/git/commands/worktree/remove.rb Command implementation detail; not part of public API
163
+ Git::Commands::Worktree::Repair class internal command-wrapper yes lib/git/commands/worktree/repair.rb Command implementation detail; not part of public API
164
+ Git::Commands::Worktree::Unlock class internal command-wrapper yes lib/git/commands/worktree/unlock.rb Command implementation detail; not part of public API
165
+ Git::Commands::WriteTree class internal command-wrapper yes lib/git/commands/write_tree.rb Command implementation detail; not part of public API
166
+ Git::Config class public entry-point no lib/git/config.rb Global git configuration access
167
+ Git::ConfigEntryInfo class public value-object no lib/git/config_entry_info.rb Public value object returned from facade methods
168
+ Git::Configuring module internal topic-module no lib/git/configuring.rb Organizational container for config facade methods; included by Git::Repository — currently @api public; C1c will flip to @api private; its methods are public
169
+ Git::DetachedHeadInfo class internal value-object no lib/git/detached_head_info.rb WIP: not yet produced by any command (intended for a future show_current detached-HEAD result); internal for now. C1c action: when setting @api private, also add a YARD comment noting this class is work-in-progress and may be made public in a later release.
170
+ Git::Diff class public return-type no lib/git/diff.rb Public return type from facade methods
171
+ Git::Diff::DiffFile class public value-object no lib/git/diff.rb Public value object returned from facade methods
172
+ Git::Diff::FullDiffParser class internal parser yes lib/git/diff.rb Internal diff parser; not part of public API
173
+ Git::DiffFileNumstatInfo class internal value-object no lib/git/diff_file_numstat_info.rb WIP: only used by internal Git::Parsers::Diff, partial work for a future Git::Repository::Diffing refactor (v6.x or later); internal for now. C1c action: when setting @api private, also add a YARD comment noting this class is work-in-progress and may be made public in a later release.
174
+ Git::DiffFilePatchInfo class internal value-object no lib/git/diff_file_patch_info.rb WIP: only used by internal Git::Parsers::Diff, partial work for a future Git::Repository::Diffing refactor (v6.x or later); internal for now. C1c action: when setting @api private, also add a YARD comment noting this class is work-in-progress and may be made public in a later release.
175
+ Git::DiffFileRawInfo class internal value-object no lib/git/diff_file_raw_info.rb WIP: only used by internal Git::Parsers::Diff, partial work for a future Git::Repository::Diffing refactor (v6.x or later); internal for now. C1c action: when setting @api private, also add a YARD comment noting this class is work-in-progress and may be made public in a later release.
176
+ Git::DiffInfo class internal value-object no lib/git/diff_info.rb WIP: not currently instantiated anywhere; part of a future Git::Repository::Diffing refactor (v6.x or later); internal for now. C1c action: when setting @api private, also add a YARD comment noting this class is work-in-progress and may be made public in a later release.
177
+ Git::DiffPathStatus class public value-object no lib/git/diff_path_status.rb Public value object returned from facade methods
178
+ Git::DiffResult class internal value-object no lib/git/diff_result.rb WIP: only constructed by internal Git::Parsers::Diff, partial work for a future Git::Repository::Diffing refactor (v6.x or later); internal for now. C1c action: when setting @api private, also add a YARD comment noting this class is work-in-progress and may be made public in a later release.
179
+ Git::DiffStats class public value-object no lib/git/diff_stats.rb Public value object returned from facade methods
180
+ Git::DirstatEntry class internal value-object no lib/git/dirstat_info.rb WIP: only used by internal Git::Parsers::Diff (element of Git::DirstatInfo#entries), partial work for a future Git::Repository::Diffing refactor (v6.x or later); internal for now. C1c action: when setting @api private, also add a YARD comment noting this class is work-in-progress and may be made public in a later release.
181
+ Git::DirstatInfo class internal value-object no lib/git/dirstat_info.rb WIP: only used by internal Git::Parsers::Diff, partial work for a future Git::Repository::Diffing refactor (v6.x or later); internal for now. C1c action: when setting @api private, also add a YARD comment noting this class is work-in-progress and may be made public in a later release.
182
+ Git::EncodingUtils class internal plumbing yes lib/git/encoding_utils.rb Internal encoding utility; not part of public API
183
+ Git::Error class public error no lib/git/errors.rb Public exception class raised by facade methods
184
+ Git::EscapedPath class internal plumbing no lib/git/escaped_path.rb Internal path escaping utility; currently @api public — needs flip to @api private in C1c
185
+ Git::ExecutionContext class internal execution-context yes lib/git/execution_context.rb Internal execution context; not part of public API
186
+ Git::ExecutionContext::Global class internal execution-context yes lib/git/execution_context/global.rb Internal execution context; not part of public API
187
+ Git::ExecutionContext::Repository class internal execution-context yes lib/git/execution_context/repository.rb Internal execution context; not part of public API
188
+ Git::FailedError class public error no lib/git/errors.rb Public exception class raised by facade methods
189
+ Git::FileDiffInfo class internal value-object no lib/git/diff_info.rb WIP: not currently instantiated anywhere; part of a future Git::Repository::Diffing refactor (v6.x or later); internal for now. C1c action: when setting @api private, also add a YARD comment noting this class is work-in-progress and may be made public in a later release.
190
+ Git::FileRef class internal value-object no lib/git/file_ref.rb WIP: only used by internal Git::Parsers::Diff (nested in raw/patch info), partial work for a future Git::Repository::Diffing refactor (v6.x or later); internal for now. C1c action: when setting @api private, also add a YARD comment noting this class is work-in-progress and may be made public in a later release.
191
+ Git::FsckObject class public value-object no lib/git/fsck_object.rb Public value object returned from facade methods
192
+ Git::FsckResult class public value-object no lib/git/fsck_result.rb Public value object returned from facade methods
193
+ Git::GitAltURI class internal plumbing no lib/git/url.rb Internal URL parsing helper for SCP-style SSH syntax; never returned to users
194
+ Git::Log class public return-type no lib/git/log.rb Public return type from facade methods
195
+ Git::Log::Result class public value-object no lib/git/log.rb Public value object returned from facade methods
196
+ Git::Object class public value-object no lib/git/object.rb Public git object type in the Git::Object hierarchy
197
+ Git::Object::AbstractObject class internal abstract-base no lib/git/object.rb Abstract base class for git objects; not directly instantiated by users
198
+ Git::Object::Blob class public value-object no lib/git/object.rb Public git object type in the Git::Object hierarchy
199
+ Git::Object::Commit class public value-object no lib/git/object.rb Public git object type in the Git::Object hierarchy
200
+ Git::Object::Tag class public value-object no lib/git/object.rb Public git object type in the Git::Object hierarchy
201
+ Git::Object::Tree class public value-object no lib/git/object.rb Public git object type in the Git::Object hierarchy
202
+ Git::Parsers module internal parser yes lib/git/parsers/branch.rb Parser implementation detail; not part of public API
203
+ Git::Parsers::Branch class internal parser yes lib/git/parsers/branch.rb Parser implementation detail; not part of public API
204
+ Git::Parsers::CatFile class internal parser yes lib/git/parsers/cat_file.rb Parser implementation detail; not part of public API
205
+ Git::Parsers::ConfigEntry class internal parser yes lib/git/parsers/config_entry.rb Parser implementation detail; not part of public API
206
+ Git::Parsers::Diff class internal parser yes lib/git/parsers/diff.rb Parser implementation detail; not part of public API
207
+ Git::Parsers::Diff::Numstat class internal parser yes lib/git/parsers/diff.rb Parser implementation detail; not part of public API
208
+ Git::Parsers::Diff::Patch class internal parser yes lib/git/parsers/diff.rb Parser implementation detail; not part of public API
209
+ Git::Parsers::Diff::Patch::PatchFileParser class internal parser yes lib/git/parsers/diff.rb Parser implementation detail; not part of public API
210
+ Git::Parsers::Diff::Patch::PatchMetadataParser class internal parser yes lib/git/parsers/diff.rb Parser implementation detail; not part of public API
211
+ Git::Parsers::Diff::Raw class internal parser yes lib/git/parsers/diff.rb Parser implementation detail; not part of public API
212
+ Git::Parsers::Fsck class internal parser yes lib/git/parsers/fsck.rb Parser implementation detail; not part of public API
213
+ Git::Parsers::Grep class internal parser yes lib/git/parsers/grep.rb Parser implementation detail; not part of public API
214
+ Git::Parsers::LsRemote class internal parser yes lib/git/parsers/ls_remote.rb Parser implementation detail; not part of public API
215
+ Git::Parsers::LsTree class internal parser yes lib/git/parsers/ls_tree.rb Parser implementation detail; not part of public API
216
+ Git::Parsers::Stash class internal parser yes lib/git/parsers/stash.rb Parser implementation detail; not part of public API
217
+ Git::Parsers::Stash::Fields class internal parser yes lib/git/parsers/stash.rb Parser implementation detail; not part of public API
218
+ Git::Parsers::Tag class internal parser yes lib/git/parsers/tag.rb Parser implementation detail; not part of public API
219
+ Git::ProcessIOError class public error no lib/git/errors.rb Public exception class raised by facade methods
220
+ Git::Remote class public return-type no lib/git/remote.rb Public return type from facade methods
221
+ Git::Repository class public return-type no lib/git/repository.rb Main facade for repository operations; return type of Git factory methods (.open, .clone, .init, .bare)
222
+ Git::Repository::Branching module internal topic-module no lib/git/repository/branching.rb Organizational container; currently @api public — C1c will flip to @api private; its methods are public
223
+ Git::Repository::Branching::HeadState class internal state-object no lib/git/repository/branching.rb Internal state/path helper within a topic module
224
+ Git::Repository::Committing module internal topic-module no lib/git/repository/committing.rb Organizational container; currently @api public — C1c will flip to @api private; its methods are public
225
+ Git::Repository::ContextHelpers module internal topic-module no lib/git/repository/context_helpers.rb Organizational container; currently @api public — C1c will flip to @api private; its methods are public
226
+ Git::Repository::Diffing module internal topic-module no lib/git/repository/diffing.rb Organizational container; currently @api public — C1c will flip to @api private; its methods are public
227
+ Git::Repository::Factories module internal topic-module yes lib/git/repository/factories.rb Organizational container; @api private set in PR 1597; its methods are public
228
+ Git::Repository::Inspecting module internal topic-module no lib/git/repository/inspecting.rb Organizational container; currently @api public — C1c will flip to @api private; its methods are public
229
+ Git::Repository::Logging module internal topic-module no lib/git/repository/logging.rb Organizational container; currently @api public — C1c will flip to @api private; its methods are public
230
+ Git::Repository::Maintenance module internal topic-module no lib/git/repository/maintenance.rb Organizational container; currently @api public — C1c will flip to @api private; its methods are public
231
+ Git::Repository::Merging module internal topic-module no lib/git/repository/merging.rb Organizational container; currently @api public — C1c will flip to @api private; its methods are public
232
+ Git::Repository::ObjectOperations module internal topic-module no lib/git/repository/object_operations.rb Organizational container; currently @api public — C1c will flip to @api private; its methods are public
233
+ Git::Repository::PathResolver module internal plumbing yes lib/git/repository/path_resolver.rb Internal path resolution helper; already @api private
234
+ Git::Repository::RemoteOperations module internal topic-module no lib/git/repository/remote_operations.rb Organizational container; currently @api public — C1c will flip to @api private; its methods are public
235
+ Git::Repository::Staging module internal topic-module no lib/git/repository/staging.rb Organizational container; currently @api public — C1c will flip to @api private; its methods are public
236
+ Git::Repository::Stashing module internal topic-module no lib/git/repository/stashing.rb Organizational container; currently @api public — C1c will flip to @api private; its methods are public
237
+ Git::Repository::StatusOperations module internal topic-module no lib/git/repository/status_operations.rb Organizational container; currently @api public — C1c will flip to @api private; its methods are public
238
+ Git::Repository::WorktreeOperations module internal topic-module no lib/git/repository/worktree_operations.rb Organizational container; currently @api public — C1c will flip to @api private; its methods are public
239
+ Git::SignaledError class public error no lib/git/errors.rb Public exception class raised by facade methods
240
+ Git::Stash class public return-type no lib/git/stash.rb Public return type from facade methods
241
+ Git::StashInfo class public value-object no lib/git/stash_info.rb Public value object returned from facade methods
242
+ Git::Stashes class public return-type no lib/git/stashes.rb Public return type from facade methods
243
+ Git::Status class public return-type no lib/git/status.rb Public return type from facade methods
244
+ Git::Status::StatusFile class public return-type no lib/git/status.rb Public return type from facade methods
245
+ Git::Status::StatusFileFactory class internal plumbing yes lib/git/status.rb Internal factory for StatusFile objects; not part of public API
246
+ Git::TagDeleteFailure class public value-object no lib/git/tag_delete_failure.rb Public value object returned from facade methods
247
+ Git::TagDeleteResult class public value-object no lib/git/tag_delete_result.rb Public value object returned from facade methods
248
+ Git::TagInfo class public value-object no lib/git/tag_info.rb Public value object returned from facade methods
249
+ Git::TimeoutError class public error no lib/git/errors.rb Public exception class raised by facade methods
250
+ Git::URL class internal plumbing no lib/git/url.rb Internal URL utility used by clone/remote internals; never returned to users
251
+ Git::UnexpectedResultError class public error no lib/git/errors.rb Public exception class raised by facade methods
252
+ Git::Version class internal plumbing no lib/git/version.rb Internal version type used by command layer; surfaces in Git::VersionError but users don't need to instantiate or subclass it
253
+ Git::VersionConstraint class internal plumbing no lib/git/version_constraint.rb Internal constraint type used by Git::Commands::Base; surfaces via Git::VersionError#constraint but users don't need to construct or depend on it
254
+ Git::VersionError class public error no lib/git/errors.rb Public exception class raised by facade methods
255
+ Git::Worktree class public return-type no lib/git/worktree.rb Public return type from facade methods
256
+ Git::Worktrees class public return-type no lib/git/worktrees.rb Public return type from facade methods