diff options
author | Wolfgang Müller | 2021-05-17 12:40:53 +0200 |
---|---|---|
committer | Wolfgang Müller | 2021-05-17 12:40:53 +0200 |
commit | 886f86594a07095aa676c130d90c9333b4208f00 (patch) | |
tree | 8e0c0a71da3ce3d75f19a6a2e3f10348a0f2dc87 /posts | |
parent | 34012d409fc04a5b86c6f7413c238bc6410631d4 (diff) | |
download | site-886f86594a07095aa676c130d90c9333b4208f00.tar.gz |
posts: Remove unnecessary single quotes in signify-cgit.md
These were here because the argument used to contain a glob, like so:
--notes='signatures/*'
Thanks to V for reporting this.
Diffstat (limited to 'posts')
-rw-r--r-- | posts/signify-cgit.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/posts/signify-cgit.md b/posts/signify-cgit.md index bf0e48e..7cbacba 100644 --- a/posts/signify-cgit.md +++ b/posts/signify-cgit.md @@ -165,7 +165,7 @@ Git also supports showing notes in format inline after the commit message[^6]: ``` -$ git log --notes='signatures/tar.gz' +$ git log --notes=signatures/tar.gz ``` ## When in doubt, automate |