summaryrefslogtreecommitdiffstats
path: root/MyFirstObjectWalk.html
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2021-09-10 12:54:21 -0700
committerJunio C Hamano <gitster@pobox.com>2021-09-10 12:54:21 -0700
commit7d6f46e6146b1934447203aaec7403cbc44c7710 (patch)
tree2392827358bf0e6396238d97b4f447b956b8a9a0 /MyFirstObjectWalk.html
parent810dc8f1583cea4aa8bebdfbbc5da4b72f4b0b20 (diff)
downloadgit-htmldocs-7d6f46e6146b1934447203aaec7403cbc44c7710.tar.gz
Autogenerated HTML docs for v2.33.0-328-g8b7c1
Diffstat (limited to 'MyFirstObjectWalk.html')
-rw-r--r--MyFirstObjectWalk.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/MyFirstObjectWalk.html b/MyFirstObjectWalk.html
index 602f9268d..a0f5c275b 100644
--- a/MyFirstObjectWalk.html
+++ b/MyFirstObjectWalk.html
@@ -1512,7 +1512,7 @@ be traversed during a walk; you can imagine a breadth-first tree traversal to
help understand. In our case, that means we omit trees and blobs not directly
referenced by <code>HEAD</code> or <code>HEAD</code>'s history, because we begin the walk with only
<code>HEAD</code> in the <code>pending</code> list.)</p></div>
-<div class="paragraph"><p>First, we&#8217;ll need to <code>#include "list-objects-filter-options.h</code>" and set up the
+<div class="paragraph"><p>First, we&#8217;ll need to <code>#include "list-objects-filter-options.h"</code> and set up the
<code>struct list_objects_filter_options</code> at the top of the function.</p></div>
<div class="listingblock">
<div class="content">
@@ -1594,7 +1594,7 @@ Count all the objects within and modify the print statement:</p></div>
while ((oid = oidset_iter_next(&amp;oit)))
omitted_count++;
- printf("commits %d\nblobs %d\ntags %d\ntrees%d\nomitted %d\n",
+ printf("commits %d\nblobs %d\ntags %d\ntrees %d\nomitted %d\n",
commit_count, blob_count, tag_count, tree_count, omitted_count);</code></pre>
</div></div>
<div class="paragraph"><p>By running your walk with and without the filter, you should find that the total
@@ -1717,7 +1717,7 @@ Changed the display order of the filtered object walk
<div id="footer">
<div id="footer-text">
Last updated
- 2020-12-08 16:10:07 PST
+ 2021-09-10 12:51:28 PDT
</div>
</div>
</body>