#705 Add missing period characters

This commit is contained in:
Jens Bremmekamp 2020-05-12 10:08:27 +02:00
parent 3d2d3dac42
commit 7d5e83610a
25 changed files with 253 additions and 253 deletions

View file

@ -62,7 +62,7 @@ exports.level = {
"markdowns": [
"## Our Command to create remotes",
"",
"Up until this point, Learn Git Branching has focused on teaching the basics of _local_ repository work (branching, merging, rebasing, etc). However now that we want to learn about remote repository work, we need a command to set up the environment for those lessons. `git clone` will be that command",
"Up until this point, Learn Git Branching has focused on teaching the basics of _local_ repository work (branching, merging, rebasing, etc). However now that we want to learn about remote repository work, we need a command to set up the environment for those lessons. `git clone` will be that command.",
"",
"Technically, `git clone` in the real world is the command you'll use to create _local_ copies of remote repositories (from github for example). We use this command a bit differently in Learn Git Branching though -- `git clone` actually makes a remote repository out of your local one. Sure it's technically the opposite meaning of the real command, but it helps build the connection between cloning and remote repository work, so let's just run with it for now.",
""