Skip to content

Commit b132b8d

Browse files
authored
Merge pull request #140 from emcaulay/gh-pages
Proofreading correction to remove duplicate paragraphs in Episode 2
2 parents 9c2c796 + 08bb66c commit b132b8d

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

episodes/02-getting-started.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,7 @@ we need to configure a few things. The basic elements of a configuration for Git
2525
* what your preferred text editor is,
2626
* the name of your default branch (branches are an important component of Git that we will cover later).
2727

28-
First, we will tell Git our user name and email. For this lesson, we will be interacting with [GitHub](https://github.com/), and therefore 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/).
29-
30-
Open your shell terminal window and type:
28+
First, we will check in on our current Git configuration. Open your shell terminal window and type:
3129

3230
~~~
3331
$ git config --list
@@ -60,7 +58,8 @@ init.defaultbranch=main
6058
~~~
6159
{: .output}
6260

63-
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.
61+
If you have different output, then you may have your Git configured already. If you have not configured Git, we will do that together now.
62+
First, we will tell Git our user name and email.
6463

6564
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/).
6665

0 commit comments

Comments
 (0)