From 85fbc8684b64a988952a19d6feeed893cdb79214 Mon Sep 17 00:00:00 2001 From: Ismo Vuorinen Date: Thu, 10 Aug 2023 09:33:07 +0300 Subject: [PATCH] fix(config): fix git-profile configuration --- base/git_profiles | 12 ------------ base/gitprofile | 34 ++++++++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+), 12 deletions(-) delete mode 100644 base/git_profiles create mode 100644 base/gitprofile diff --git a/base/git_profiles b/base/git_profiles deleted file mode 100644 index dda90bf..0000000 --- a/base/git_profiles +++ /dev/null @@ -1,12 +0,0 @@ -[work] -name = Ismo Vuorinen -email = ismo.vuorinen@vincit.fi - -[home] -name = Ismo Vuorinen -email = ismo@ivuorinen.net - -[github] -name = ivuorinen -email = ivuorinen@users.noreply.github.com - diff --git a/base/gitprofile b/base/gitprofile new file mode 100644 index 0000000..e93cc29 --- /dev/null +++ b/base/gitprofile @@ -0,0 +1,34 @@ +{ + "profiles": { + "github": [ + { + "key": "user.name", + "value": "Ismo Vuorinen" + }, + { + "key": "user.email", + "value": "ivuorinen@users.noreply.github.com" + } + ], + "home": [ + { + "key": "user.email", + "value": "ismo@ivuorinen.net" + }, + { + "key": "user.name", + "value": "Ismo Vuorinen" + } + ], + "work": [ + { + "key": "user.email", + "value": "ismo.vuorinen@vincit.fi" + }, + { + "key": "user.name", + "value": "Ismo Vuorinen" + } + ] + } +} \ No newline at end of file