Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 08f3d7b

Browse files
committed
Typo fixes for "Five Commits"
1 parent ae35b27 commit 08f3d7b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

gitgud/skills/newbasics/_five/explanation.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Recall back to what you did:
3434
2. You "git add"-ed the file
3535
3. You "git commit"-ed the file
3636

37-
You did this twice. In the end, you created two files and ened up with two commits.
37+
You did this twice. In the end, you created two files and ended up with two commits.
3838

3939
>>>
4040

@@ -56,7 +56,7 @@ Whenever you're looking at "git status", you're looking at the changes you've ma
5656

5757
So, looking back, when you first created a file, it was the only file in the working directory, and it showed up when you ran "git status". You added the file, and it still showed up when you ran "git status", but after you committed it, the file no longer appeared when you ran "git status".
5858

59-
When you created the second file, it showed up in when you ran "git status" too, and then you added it and committed it, but that time, the first file was still in the working directory. The first file doesn't show up when you run "git status", but Git still knows about it.
59+
When you created the second file, it showed up when you ran "git status" too, and then you added it and committed it, but that time, the first file was still in the working directory. The first file doesn't show up when you run "git status", but Git still knows about it.
6060

6161
>>>
6262

@@ -76,7 +76,7 @@ You can use "git add" when you want to tell Git to "add" new changes to existing
7676
You can use "git rm" when you want to tell Git to "remove" files
7777
You can use "git mv" when you want to tell Git to "move" or rename files
7878

79-
Finally, Git only stores versions of a repo. It dosen't actually store changes, but Git can tell if two files contents are the same. In Git's view, removing a file and then adding a file with the same contents is the same thing as moving it or renaming the file.
79+
Finally, Git only stores versions of a repo. It doesn't actually store changes, but Git can tell if two files contents are the same. In Git's view, removing a file and then adding a file with the same contents is the same thing as moving it or renaming the file.
8080

8181
>>>
8282

0 commit comments

Comments
 (0)