From 0dd860137511bcbbd197af28d892fa20bc401aaf Mon Sep 17 00:00:00 2001 From: Mika Suomalainen Date: Mon, 30 Apr 2012 19:16:33 +0300 Subject: [PATCH] .cat.sh: Two things 1. Why I don't want gitconfig to be overwritten? 2. Why does it matter that my KEYID reads in gpg.conf? --- .cat.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.cat.sh b/.cat.sh index 28cf51dd..2fff316c 100755 --- a/.cat.sh +++ b/.cat.sh @@ -3,10 +3,10 @@ cat bashrc > ~/.bashrc cat tmux.conf > ~/.tmux.conf cat zshrc > ~/.zshrc -#cat gitconfig > ~/.gitconfig # I usually do not want this to be overridden so much. +cat gitconfig > ~/.gitconfig # I usually do not want this to be overridden so much. cat vimrc > ~/.vimrc #gpg --keyserver hkp://pool.sks-keyservers.net --recv-keys A4271AC5 # Run gpg once to get configuration file and keyrings. -#cat gpg.conf > ~/.gnupg/gpg.conf # Maybe this shouldn't get replaced so much, since it contains my key ids. +cat gpg.conf > ~/.gnupg/gpg.conf # Maybe this shouldn't get replaced so much, since it contains my key ids. cat xsessionrc > ~/.xsessionrc exec $SHELL