You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-7
Original file line number
Diff line number
Diff line change
@@ -56,7 +56,7 @@ information we'll need about this repository.
56
56
57
57
#### Step 4
58
58
59
-
In your terminal, type `git clone`, and paste the info you copied from
59
+
In your terminal, type `git clone`, and paste the info you copied from
60
60
GitHub. The command should look something like this (but with your personal
61
61
account name):
62
62
@@ -121,7 +121,9 @@ the local repository
121
121
122
122
Each failed test includes an explanation.
123
123
124
-
In the first test seen above, for instance, it says `this lab has a folder named my-repository`, followed by `AssertionError: no folder name "my-repository" was found`.
124
+
In the first test seen above, for instance, it says
125
+
`this lab has a folder named my-repository`, followed by
126
+
`AssertionError: no folder name "my-repository" was found`.
125
127
126
128
This first test is looking specifically for a folder, `my-repository`, to exist
127
129
inside this lab's main directory (or "folder"). You probably have a theory on
@@ -141,8 +143,8 @@ tests to let us know when we're all done.
141
143
> this lab, (`phase-0-git-basics-lab`, the directory with the `README` you're
142
144
> reading right now in it).
143
145
144
-
Follow the steps provided below carefully to help ensure you are doing things in the
145
-
right location.
146
+
Follow the steps provided below carefully to help ensure you are doing things in
147
+
the right location.
146
148
147
149
### Steps
148
150
@@ -227,8 +229,9 @@ account and connect it to your newly created local repository.
227
229
228
230

229
231
230
-
When we create a blank repository, we are given multiple options for how to get started. Since we have a local folder with
231
-
Git initialized already, we'll use the instructions for creating a new repository using the command line.
232
+
When we create a blank repository, we are given multiple options for how to get
233
+
started. Since we have a local folder with Git initialized already, we'll use
234
+
the instructions for creating a new repository using the command line.
232
235
233
236

234
237
@@ -247,7 +250,7 @@ $ git branch -M main
247
250
248
251
If you recall from the version control basics lesson, going forward `main` will
249
252
be used as the default name of the... main... branch in a repository. Depending
250
-
on your environment you may still have a version of Git that defaults to
253
+
on your environment you may still have an older version of Git that defaults to
251
254
`master`. If this is the case, the above command will change this `master`
0 commit comments