From 612df7fd65fd1d7cbe4d7f083f7eeef0308d8648 Mon Sep 17 00:00:00 2001 From: "Blazej M. Baczkowski" Date: Wed, 25 Feb 2026 15:24:19 +0100 Subject: [PATCH] Fix git bisect exercise: use master instead of main --- content/archaeology.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/archaeology.md b/content/archaeology.md index 5c3b3d0c..e6bbdba3 100644 --- a/content/archaeology.md +++ b/content/archaeology.md @@ -477,7 +477,7 @@ We will probably arrive at a solution which is similar to `git bisect`: ```console $ git bisect start $ git bisect good f0ea950 # this is a commit that worked - $ git bisect bad main # last commit is broken + $ git bisect bad master # last commit is broken ``` - Now compile and/or run and/or test and decide whether "good" or "bad". - This is how you can tell Git that this was a working commit: