From 462454439216ba0ea94954db99198c3f1477a49f Mon Sep 17 00:00:00 2001 From: Chris Simpkins Date: Sun, 3 May 2020 19:46:08 -0400 Subject: [PATCH] [README.md] use wildcards in gitattribute configuration with `--git` option --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 036b978..a927cd1 100644 --- a/README.md +++ b/README.md @@ -128,8 +128,8 @@ Git can be configured to automatically use a specific tool to diff specific file 2. Tell Git to actually use that specific tool for supported file types. This may also be done at multiple places. Each repository may have it's own `.gitattributes` file, a user may have one setting global defaults in `$XDG_HOME/git/attributes`, or there may be a system wide default file. Wherever you choose to place this, the lines are the same: ```gitattributes - .otf diff=fdiff - .ttf diff=fdiff + *.otf diff=fdiff + *.ttf diff=fdiff ``` ### Options