Fix a bunch of typos, mostly punctuation.

Some changes in word choice.
This commit is contained in:
Don Kirkby 2014-02-01 19:13:31 -08:00
parent f952bd7061
commit d5dee08e01
14 changed files with 32 additions and 32 deletions

View file

@ -19,14 +19,14 @@ exports.level = {
"markdowns": [
"## Git Pull",
"",
"Now that we've seen how to fetch data from a remote repository with `git fetch`, lets update our work to reflect those changes!",
"Now that we've seen how to fetch data from a remote repository with `git fetch`, let's update our work to reflect those changes!",
"",
"There are actually many ways to do this -- once you have new commits available locally, you can incorporate them as if they were just normal commits on other branches. This means you could execute commands like:",
"",
"* `git cherry-pick o/master`",
"* `git rebase o/master`",
"* `git merge o/master`",
"* etc, etc",
"* etc., etc.",
"",
"In fact, the workflow of *fetching* remote changes and then *merging* them is so common that git actually make a command that does both at once! That command is `git pull`."
]