From 9768099da34cf8a51fc48197de6bfbc7cf59a507 Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Sun, 22 Nov 2015 20:00:39 -0600 Subject: [PATCH] Fix a typo. --- git/grep-over-commit-messages.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/git/grep-over-commit-messages.md b/git/grep-over-commit-messages.md index 644f105..5f91798 100644 --- a/git/grep-over-commit-messages.md +++ b/git/grep-over-commit-messages.md @@ -4,8 +4,8 @@ The `git log` command supports a `--grep` flag that allows you to do a text search (using grep, obviously) over the commit messages for that repository. For the git user that writes descriptive commit messages, this can come in quite handy. In particular, this can be put to use in an environment where -the standard process involves including ticket and bug numbers in the -commit. For example, finding bug `#123` can be accomplished with: +the standard process involves including ticket and bug numbers in the commit +message. For example, finding bug `#123` can be accomplished with: ```bash $ git log --grep="#123"