diff options
author | HairyFotr <hairyfotr@gmail.com> | 2017-08-23 10:14:39 +0200 |
---|---|---|
committer | HairyFotr <hairyfotr@gmail.com> | 2017-08-23 10:14:39 +0200 |
commit | 985d23a52b76593a120adff5381c2df3a80fe298 (patch) | |
tree | 0eeec5a7b13a110e18f319d1fe1c4568b68385a7 /git.html.markdown | |
parent | 9c5a67ca0f3c989ef31141f83d64fba10b93b059 (diff) |
Fix a bunch of typos
Diffstat (limited to 'git.html.markdown')
-rw-r--r-- | git.html.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/git.html.markdown b/git.html.markdown index 1cd2578e..088c109f 100644 --- a/git.html.markdown +++ b/git.html.markdown @@ -432,7 +432,7 @@ Stashing takes the dirty state of your working directory and saves it on a stack of unfinished changes that you can reapply at any time. Let's say you've been doing some work in your git repo, but you want to pull -from the remote. Since you have dirty (uncommited) changes to some files, you +from the remote. Since you have dirty (uncommitted) changes to some files, you are not able to run `git pull`. Instead, you can run `git stash` to save your changes onto a stack! @@ -521,7 +521,7 @@ $ git reset --hard $ git reset 31f2bb1 # Moves the current branch tip backward to the specified commit -# and makes the working dir match (deletes uncommited changes and all commits +# and makes the working dir match (deletes uncommitted changes and all commits # after the specified commit). $ git reset --hard 31f2bb1 ``` |