aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2020-10-11 12:54:45 -0300
committerEuAndreh <eu@euandre.org>2020-10-11 12:57:47 -0300
commit061347b863955b9a0a66e25eb5c64e7a49c55d12 (patch)
treefe3cbdc34da5bdc80e922bb9ae36abbe78e5e995
parentWIP feature flag article (diff)
downloadeuandre.org-061347b863955b9a0a66e25eb5c64e7a49c55d12.tar.gz
euandre.org-061347b863955b9a0a66e25eb5c64e7a49c55d12.tar.xz
Git search TIL: Fix typo in code example
-rw-r--r--_tils/2020-10-11-search-changes-to-a-filename-pattern-in-git-history.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/_tils/2020-10-11-search-changes-to-a-filename-pattern-in-git-history.md b/_tils/2020-10-11-search-changes-to-a-filename-pattern-in-git-history.md
index 07f5405..264d1bd 100644
--- a/_tils/2020-10-11-search-changes-to-a-filename-pattern-in-git-history.md
+++ b/_tils/2020-10-11-search-changes-to-a-filename-pattern-in-git-history.md
@@ -25,7 +25,7 @@ You could add globs before the pattern to match things on any directory, and add
our `-p` friend to promptly see the diffs:
```shell
-git log - -- **/*pattern*
+git log -p -- **/*pattern*
```
[git-til-1]: {% link _tils/2020-08-14-browse-a-git-repository-at-a-specific-commit.md %}