From 1fa8a72ee4331edf1816060711fc66bdece2c4d0 Mon Sep 17 00:00:00 2001 From: Till Höppner Date: Tue, 6 Jun 2017 16:10:00 +0200 Subject: Fix g ident, it was appending 'l' to user mail --- gitconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitconfig b/gitconfig index 9fa2046..ca5555b 100644 --- a/gitconfig +++ b/gitconfig @@ -48,7 +48,7 @@ ident = "!f(){\ git config --replace-all user.name \"$1\";\ - git config --replace-all user.email \"$2l\";\ + git config --replace-all user.email \"$2\";\ if [ -n \"$3\" ]; then\ git config --replace-all user.signingkey \"$3\";\ git config --replace-all commit.gpgsign true;\ -- cgit v1.2.3