Skip to content

Commit 28dbb71

Browse files
committed
Minor typos
1 parent 0364c01 commit 28dbb71

File tree

3 files changed

+9
-12
lines changed

3 files changed

+9
-12
lines changed

_posts/2021-08-24-git_rewrite_1.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ type of file.
193193
This is _unlimited linear growth_. Each time we built out we increased
194194
the size of the repo by roughly the size of our PDFs after [zlib
195195
compression](https://en.wikipedia.org/wiki/Zlib). By design, Git
196-
repositories never get smaller. It's a ratcheting effect that needless
196+
repositories never get smaller. It's a ratcheting effect that needlessly
197197
chewed up disk space and bandwidth for everyone who contributes to the
198198
project. It had to stop.
199199

@@ -270,5 +270,5 @@ our story just now.
270270
[^5]: Git also compresses blobs and uses
271271
[packfiles](https://git-scm.com/book/en/v2/Git-Internals-Packfiles)
272272
to reduce the size of the repository. Interestingly, packfiles
273-
work on a similarly to changesets except they can group similar
273+
work similarly to changesets except they can group similar
274274
content even if it's not strictly speaking the same file.

_posts/2021-09-06-git_rewrite_2.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -140,12 +140,11 @@ But this is really terrible grammar that only a computer could love. Let's rewor
140140
> When there is a `push` `on` the `develop` `branch` . . .
141141
142142
I haven't talked about branches just yet, but this is feature of Git
143-
that allows people to work on different projects using the same code
144-
without stepping on each other's toes. It creates an alternate
145-
timeline that won't interfere with other timelines until someone
146-
decides to merge them. The important thing is that this particular
147-
workflow happens every time someone submits a change to the `develop`
148-
branch.
143+
that allows several people to work on the same code without stepping
144+
on each other's toes. It creates an alternate timeline that won't
145+
interfere with other timelines until someone decides to merge
146+
them. The important thing is that this particular workflow happens
147+
every time someone submits a change to the `develop` branch.
149148

150149
What happens? Well that's defined in the second half of the file:
151150

@@ -225,7 +224,7 @@ defining steps, but they boil down to:
225224

226225
The crux of the problem, [as I previously
227226
explained]((/2021/08/24/git_rewrite_1.html)), is that we checked in
228-
PDFs files which caused our repository to grow without limit. So all
227+
PDF files which caused our repository to grow without limit. So all
229228
we need to do is eliminate step #3 there.
230229

231230
Trouble is we want to keep PDFs indefinitely. So we need to store them
@@ -289,6 +288,7 @@ we've created have been overtaken by events.
289288
That said, the nifty thing about Git keeping all that history _and_
290289
using commodity compute power is that we can more or less re-generate
291290
any PDF we've ever created in the past. All we need to do is:
291+
292292
1. Log into a computer with the same configuration as the computer we
293293
used to generate PDFs. (In our case, that's one running
294294
`ubuntu-20.04`.)

_posts/2023-09-01-git_rewrite_3.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -157,9 +157,6 @@ sent out emails to everyone I had a reason to suspect had make a
157157
copy. And then I moved on content in the knowledge that only some disk
158158
space, and not the space-time continuum itself, was at risk.
159159

160-
---
161-
162-
163160
[^1]: I [no longer work at EDB](/2022/06/13/year_at_edb.html), but I
164161
found this draft and decided to finish writing it. Hopefully I
165162
remember enough to be informative!

0 commit comments

Comments
 (0)