From 86e0b09df662232166b1734994524b559ccafc39 Mon Sep 17 00:00:00 2001 From: Corey Ladovsky Date: Tue, 24 Sep 2019 21:06:41 -0400 Subject: [PATCH 1/2] complete first problem --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 6629d35..4f04d1c 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,8 @@ ## First Set 1. Create a new directory on your Desktop called git_exercises and cd into that directory. +mkdir git_exercises +cd git_exercies 2. Using `git init`, create a new repository. 3. Using the `touch` command, create empty files called foo and bar in your repository directory. 4. Enter `ls` to make sure they were added. From 459c9e74ee84496fe60bf6ce8b815d31605df590 Mon Sep 17 00:00:00 2001 From: Corey Ladovsky Date: Tue, 24 Sep 2019 21:08:50 -0400 Subject: [PATCH 2/2] add markdown --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 4f04d1c..d8c5bcc 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,10 @@ ## First Set 1. Create a new directory on your Desktop called git_exercises and cd into that directory. +``` mkdir git_exercises cd git_exercies +``` 2. Using `git init`, create a new repository. 3. Using the `touch` command, create empty files called foo and bar in your repository directory. 4. Enter `ls` to make sure they were added.