From d05c3a150dd90bfb05c494a181a2c5efa2c89315 Mon Sep 17 00:00:00 2001 From: jonah-loughlin-stfc <87012431+jonah-loughlin-stfc@users.noreply.github.com> Date: Wed, 27 Aug 2025 09:47:33 +0100 Subject: [PATCH] Provide an example of commit metadata Provide an example of commit metadata --- episodes/01-basics.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/episodes/01-basics.md b/episodes/01-basics.md index 6a05b13438..e04746ddd0 100644 --- a/episodes/01-basics.md +++ b/episodes/01-basics.md @@ -57,8 +57,8 @@ 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 which changes will be made to the next version (each record of these changes is called a [commit](../learners/reference.md#commit)), and keeps useful metadata -about them. The complete history of commits for a particular project and their -metadata make up a [repository](../learners/reference.md#repository). +about them, such as who made the change. The complete history of commits for a +particular project and their metadata make up a [repository](../learners/reference.md#repository). Repositories can be kept in sync across different computers, facilitating collaboration among different people.