From e871e0726e425bd523678fbc760cef987a9318f5 Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Tue, 11 Jan 2011 10:22:34 -0500 Subject: [PATCH] slightly obfuscate email for storing on web --- bash_aliases | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bash_aliases b/bash_aliases index 481c78e..1b0ae92 100644 --- a/bash_aliases +++ b/bash_aliases @@ -97,7 +97,8 @@ export EDITOR=vim function git-config-joshs() { git config --global user.name 'Josh Holtrop' - git config --global user.email 'jholtrop+git@gmail.com' + domain='gmail.com' + git config --global user.email 'jholtrop+git@'${domain} git config --global push.default matching git config --global color.ui true git config --global core.excludesfile ${HOME}/.gitignore