diff options
author | EuAndreh <eu@euandre.org> | 2020-10-11 12:54:45 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2020-10-11 12:57:47 -0300 |
commit | 061347b863955b9a0a66e25eb5c64e7a49c55d12 (patch) | |
tree | fe3cbdc34da5bdc80e922bb9ae36abbe78e5e995 | |
parent | WIP feature flag article (diff) | |
download | euandre.org-061347b863955b9a0a66e25eb5c64e7a49c55d12.tar.gz euandre.org-061347b863955b9a0a66e25eb5c64e7a49c55d12.tar.xz |
Git search TIL: Fix typo in code example
Diffstat (limited to '')
-rw-r--r-- | _tils/2020-10-11-search-changes-to-a-filename-pattern-in-git-history.md | 2 |
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 %} |