From 447f0d3f07cb5001ef29c2880d5eed6e04d0b9c0 Mon Sep 17 00:00:00 2001 From: Wyatt Hoodes Date: Wed, 7 Aug 2019 15:32:39 -1000 Subject: [PATCH] docs: Fix typos in git cheat sheet documentation. --- docs/git/cheat-sheet.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/git/cheat-sheet.md b/docs/git/cheat-sheet.md index 09a1005952..34c4e77c35 100644 --- a/docs/git/cheat-sheet.md +++ b/docs/git/cheat-sheet.md @@ -24,14 +24,14 @@ See also [fixing commits][fix-commit] - `git fetch origin` - `git fetch upstream` - grep - - `git grep update_unread_counts + - `git grep update_unread_counts` - log - `git log` - pull - `git pull --rebase`: **Use this**. Zulip uses a [rebase oriented workflow][git-overview]. - `git pull` (with no options): Will either create a merge commit (which you don't want) or do the same thing as `git pull --rebase`, - depending on [whether you're configured Git properly][git-clone-config] + depending on [whether you've configured Git properly][git-config-clone] - push - `git push origin +branch-name` - rebase @@ -87,7 +87,7 @@ See also [fixing commits][fix-commit] - `git pull --rebase`: rebase your changes on top of master. - `git pull` (with no options): Will either create a merge commit (which you don't want) or do the same thing as `git pull --rebase`, - depending on [whether you're configured Git properly][git-clone-config] + depending on [whether you've configured Git properly][git-config-clone] - push - `git push origin branch-name`: push you commits to the origin repository *only if* there are no conflicts. Use this when collaborating with others to prevent overwriting their work.