From 6cc69e557cf055e0caca9e87705ddaec3320c9c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Kn=C3=BCpfer?= Date: Wed, 2 Nov 2022 10:42:23 +0100 Subject: [PATCH] Remove duplicated text about email address --- _episodes/02-getting-started.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/_episodes/02-getting-started.md b/_episodes/02-getting-started.md index 14c97529..6482b6ff 100644 --- a/_episodes/02-getting-started.md +++ b/_episodes/02-getting-started.md @@ -26,8 +26,6 @@ we need to configure a few things. The basic elements of a configuration for Git * set the name of your default branch (branches are an important component of Git that we will cover later) * and that you want to use these settings globally (i.e. for every project). -First, we will tell Git our user name and email. For this lesson, we will be interacting with [GitHub](https://github.com/) and so we want to use the same email address we used when we set up our GitHub account. If you are concerned about privacy, please review [GitHub’s instructions for keeping your email address private](https://help.github.com/articles/keeping-your-email-address-private/). - It is possible you may have already set up Git on your computer in the past, so let's start by checking if there are any existing configurations. Open your shell terminal window and type: @@ -63,7 +61,7 @@ init.defaultbranch=main ~~~ {: .output} -Assuming you have not set up Git on your computer before, let's go ahead and add our information to our configuration now. +Assuming you have not set up Git on your computer before, let's go ahead and add our information to our configuration now. First, we will tell Git our user name and email. Please note: For this lesson, we will be interacting with [GitHub](https://github.com/) and so the email address used should be the same as the one used when setting up your GitHub account. If you are concerned about privacy, please review [GitHub’s instructions for keeping your email address private](https://help.github.com/articles/keeping-your-email-address-private/).