]> git.ipfire.org Git - thirdparty/git.git/commitdiff
doc: use 'object database' not ODB or abbreviation
authorPhilip Oakley <philipoakley@iee.email>
Sat, 29 Oct 2022 16:41:09 +0000 (17:41 +0100)
committerTaylor Blau <me@ttaylorr.com>
Sun, 30 Oct 2022 23:58:46 +0000 (19:58 -0400)
The abbreviation 'ODB' is used in the technical documentation
sections for commit-graph and parallel-checkout, along with an
'odb' option in `git-pack-redundant`, without expansion.

Use 'object database' in full, in those entries. The text has not
been reflowed to keep the changes minimal.

While in the glossary for `object` terms, add the common`oid`
abbreviation to its entry.

Signed-off-by: Philip Oakley <philipoakley@iee.email>
Signed-off-by: Taylor Blau <me@ttaylorr.com>
Documentation/git-pack-redundant.txt
Documentation/glossary-content.txt
Documentation/technical/commit-graph.txt
Documentation/technical/parallel-checkout.txt

index dda80a740c879d1a1300caad3478a56ce62cad2a..99ef13839d49cdaa93c1b5a4b523ace18ce454db 100644 (file)
@@ -34,7 +34,7 @@ OPTIONS
 
 --alt-odb::
        Don't require objects present in packs from alternate object
-       directories to be present in local packs.
+       database (odb) directories to be present in local packs.
 
 --verbose::
        Outputs some statistics to stderr. Has a small performance penalty.
index aa2f41f5e700774ef49eb7079c5239448fc61276..947ac49606965b8ec4442701732c659627e973b2 100644 (file)
@@ -262,7 +262,7 @@ This commit is referred to as a "merge commit", or sometimes just a
        identified by its <<def_object_name,object name>>. The objects usually
        live in `$GIT_DIR/objects/`.
 
-[[def_object_identifier]]object identifier::
+[[def_object_identifier]]object identifier (oid)::
        Synonym for <<def_object_name,object name>>.
 
 [[def_object_name]]object name::
index d821365b18114faa5d4f43ed65cc071e759ce963..86fed0de0f77f97031621ffd4ca94c1cbd2b5ba1 100644 (file)
@@ -17,7 +17,7 @@ There are two main costs here:
 
 The commit-graph file is a supplemental data structure that accelerates
 commit graph walks. If a user downgrades or disables the 'core.commitGraph'
-config setting, then the existing ODB is sufficient. The file is stored
+config setting, then the existing object database is sufficient. The file is stored
 as "commit-graph" either in the .git/objects/info directory or in the info
 directory of an alternate.
 
index e790258a1adcdb9d683074a63fd6c941743bb757..47c9b6183cfad0f3f8e60df2003cd60657a92b0d 100644 (file)
@@ -56,7 +56,7 @@ Rejected Multi-Threaded Solution
 
 The most "straightforward" implementation would be to spread the set of
 to-be-updated cache entries across multiple threads. But due to the
-thread-unsafe functions in the ODB code, we would have to use locks to
+thread-unsafe functions in the object database code, we would have to use locks to
 coordinate the parallel operation. An early prototype of this solution
 showed that the multi-threaded checkout would bring performance
 improvements over the sequential code, but there was still too much lock