@@ -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
142142I 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
150149What 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
226225The crux of the problem, [ as I previously
227226explained] ( (/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
229228we need to do is eliminate step #3 there.
230229
231230Trouble 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.
289288That said, the nifty thing about Git keeping all that history _ and_
290289using commodity compute power is that we can more or less re-generate
291290any PDF we've ever created in the past. All we need to do is:
291+
2922921 . Log into a computer with the same configuration as the computer we
293293used to generate PDFs. (In our case, that's one running
294294` ubuntu-20.04 ` .)
0 commit comments