From 2dc1e241c7490d5863ef5cd30d83f8dbfabf14e4 Mon Sep 17 00:00:00 2001 From: transcaffeine Date: Mon, 2 Dec 2024 19:55:58 +0100 Subject: [PATCH] chore: migrate all string values to quoted variants --- config/git/gitconfig | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/config/git/gitconfig b/config/git/gitconfig index ae305f9..055936b 100644 --- a/config/git/gitconfig +++ b/config/git/gitconfig @@ -1,11 +1,11 @@ [user] - email = redacted@example.org - name = redacted - signingkey = redacted + email = "redacted@example.org" + name = "redacted" + signingkey = "redacted" [commit] gpgsign = true [gpg] - program = /usr/bin/gpg + program = "/usr/bin/gpg" [rebase] autostash = true autosquash = true @@ -13,6 +13,6 @@ rebase = true autostash = true [format] - pretty = oneline + pretty = "oneline" [alias] - logv = log --pretty=full --show-signature + logv = "log --pretty=full --show-signature"