From 02b320ddc0810ec33e64759f5fb7373fb0e44661 Mon Sep 17 00:00:00 2001 From: Dimitrios Theodorakis Date: Tue, 6 Aug 2024 17:25:02 +0100 Subject: [PATCH] Remove checkout branch main section in episode 3 --- episodes/03-create.md | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/episodes/03-create.md b/episodes/03-create.md index 3cf285bc4b..3451c20061 100644 --- a/episodes/03-create.md +++ b/episodes/03-create.md @@ -82,19 +82,6 @@ including the tracked files and sub-directories located within the project's dir If we ever delete the `.git` subdirectory, we will lose the project's history. -Next, we will change the default branch to be called `main`. -This might be the default branch depending on your settings and version -of git. -See the [setup episode](02-setup.md#default-git-branch-naming) for more information on this change. - -```bash -$ git checkout -b main -``` - -```output -Switched to a new branch 'main' -``` - We can now start using one of the most important git commands, which is particularly helpful to beginners. `git status` tells us the status of our project, and better, a list of changes in the project and options on what to do with those changes. We can use it as often as we want, whenever we want to understand what is going on. ```bash