Conflicts:
	dotfiles/dot.gitconfig
This commit is contained in:
Donald Burr 2015-05-10 23:35:16 -07:00
commit 55be5b42d3
4 changed files with 121 additions and 41 deletions

View file

@ -2,8 +2,6 @@
name = Donald Burr
email = dburr@borg-cube.com
signingkey = dburr@borg-cube.com
[http]
sslVerify = false
[color]
ui = true
diff = auto

8
dotfiles/install.sh Executable file
View file

@ -0,0 +1,8 @@
#!/bin/sh
for F in dot.*; do
NO_DOT_NAME="`echo $F | sed -e 's/^dot//g'`"
if [ -e "$HOME/$NO_DOT_NAME" ]; then
mv "$HOME/$NO_DOT_NAME" "$HOME/$NO_DOT_NAME.bak"
fi
cp -a "$F" "$HOME/$NO_DOT_NAME"
done