summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTill Höppner2017-06-06 16:10:00 +0200
committerTill Höppner2017-06-06 16:10:00 +0200
commit1fa8a72ee4331edf1816060711fc66bdece2c4d0 (patch)
treee3edc9804c6c35d060e860a1fb831883eb6d7a8a
parent1429e43a5b41e0d02e80407b3a5fd45e7e2935fa (diff)
downloadgit-1fa8a72ee4331edf1816060711fc66bdece2c4d0.tar.gz
git-1fa8a72ee4331edf1816060711fc66bdece2c4d0.tar.xz
git-1fa8a72ee4331edf1816060711fc66bdece2c4d0.zip
Fix g ident, it was appending 'l' to user mail
-rw-r--r--gitconfig2
1 files changed, 1 insertions, 1 deletions
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;\