aboutsummaryrefslogtreecommitdiff
path: root/_tils
diff options
context:
space:
mode:
Diffstat (limited to '_tils')
-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 %}