From f5d067b1f2645aa354067c1d8db69731ee305311 Mon Sep 17 00:00:00 2001 From: Martin Raden Date: Wed, 4 Mar 2026 18:00:54 +0100 Subject: [PATCH] scale image sizes --- episodes/01-basics.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/episodes/01-basics.md b/episodes/01-basics.md index e04746ddd0..78037ead79 100644 --- a/episodes/01-basics.md +++ b/episodes/01-basics.md @@ -38,20 +38,20 @@ think of it as a recording of your progress: you can rewind to start at the base document and play back each change you made, eventually arriving at your more recent version. -![](fig/play-changes.svg){alt='A diagram demonstrating how a single document grows as the result of sequential changes'} +![](fig/play-changes.svg){alt='A diagram demonstrating how a single document grows as the result of sequential changes' width="40%"} Once you think of changes as separate from the document itself, you can then think about "playing back" different sets of changes on the base document, ultimately resulting in different versions of that document. For example, two users can make independent sets of changes on the same document. -![](fig/versions.svg){alt='A diagram with one source document that has been modified in two different ways to produce two different versions of the document'} +![](fig/versions.svg){alt='A diagram with one source document that has been modified in two different ways to produce two different versions of the document' width="60%"} Unless multiple users make changes to the same section of the document - a [conflict](../learners/reference.md#conflict) - you can incorporate two sets of changes into the same base document. -![](fig/merge.svg){alt='A diagram that shows the merging of two different document versions into one document that contains all of the changes from both versions'} +![](fig/merge.svg){alt='A diagram that shows the merging of two different document versions into one document that contains all of the changes from both versions' width="60%"} A version control system is a tool that keeps track of these changes for us, effectively creating different versions of our files. It allows us to decide