From 4f5eff713ad2dd7d71833deafcaccd28c9822592 Mon Sep 17 00:00:00 2001 From: Dimitrios Theodorakis Date: Mon, 3 Feb 2025 12:11:19 +0000 Subject: [PATCH] Update episodes/02-branching.md Co-authored-by: Tim Pillinger <26465611+wxtim@users.noreply.github.com> --- episodes/02-branching.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/episodes/02-branching.md b/episodes/02-branching.md index 4cab834..d0047aa 100644 --- a/episodes/02-branching.md +++ b/episodes/02-branching.md @@ -160,9 +160,9 @@ There are 3 repositories for each person to be mindful of, - You can use any other model within your main repository and forks to develop changes. -Note that all branches and commits exist within the collaborators fork, not the ***upstream*** repository -(and are therefore less visible to anyone who has read access to the upstream repository). -Collaborators can use their fork to test more complex changes, including for example testing github actions within a dummy-PR. +All branches and commits exist within the collaborators fork, not the ***upstream*** repository. They are harder to find for anyone who has read access to the upstream repository. + +Collaborators can use their fork to test more complex changes. For example testing github actions within a dummy-PR. -----------------------------------------