diff options
author | François Kooman <fkooman@tuxed.net> | 2018-06-19 08:41:48 +0200 |
---|---|---|
committer | François Kooman <fkooman@tuxed.net> | 2018-06-19 08:41:48 +0200 |
commit | 11b6d9c01a65cfdfac8629bcd8a65ab6c7b11893 (patch) | |
tree | c427c5f4c38d949c651687cc471b46fbe9e15c35 /posts/git_sign.md | |
parent | b765b2ed62071807af1f9b5d90862a52074e77e4 (diff) | |
download | www.tuxed.net-11b6d9c01a65cfdfac8629bcd8a65ab6c7b11893.zip www.tuxed.net-11b6d9c01a65cfdfac8629bcd8a65ab6c7b11893.tar.gz www.tuxed.net-11b6d9c01a65cfdfac8629bcd8a65ab6c7b11893.tar.xz |
add php database migrations post, update some older posts, about
Diffstat (limited to 'posts/git_sign.md')
-rw-r--r-- | posts/git_sign.md | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/posts/git_sign.md b/posts/git_sign.md index 0a164d7..907eec5 100644 --- a/posts/git_sign.md +++ b/posts/git_sign.md @@ -1,6 +1,7 @@ --- title: Signing Git Commits published: 2018-05-11 +modified: 2018-06-18 --- What a mess! This is my `$HOME/.gitconfig` that seems to make everything work. @@ -16,4 +17,8 @@ As my keyring only works with `gpg2` and not with `gpg` you also have to set gpgSign = true [gpg] program = /usr/bin/gpg2 +[tar "tar.xz"] + command = xz -c ``` + +**UPDATE** (2018-06-18): add the `tar "tar.xz"` section. |