2011-11-04 21:13:00 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
cd ~
|
|
|
|
|
|
|
|
rm -f .profile
|
|
|
|
rm -f .bashrc
|
|
|
|
ln -s ~/Repositories/config/profile .profile
|
|
|
|
ln -s ~/Repositories/config/bashrc .bashrc
|
|
|
|
|
2011-12-16 18:58:55 +00:00
|
|
|
rm -f .screenrc
|
2011-11-04 21:13:00 +00:00
|
|
|
ln -s ~/Repositories/config/screenrc .screenrc
|
|
|
|
|
|
|
|
rm -f .vimrc
|
|
|
|
ln -s ~/Repositories/config/vimrc .vimrc
|
|
|
|
|
2011-12-16 18:56:17 +00:00
|
|
|
# set up the default branch for git
|
2012-06-19 19:52:44 +00:00
|
|
|
git config --global branch.master.remote origin
|
2011-12-16 18:56:17 +00:00
|
|
|
git config --global branch.master.merge refs/heads/master
|
|
|
|
|
2012-06-10 07:07:52 +00:00
|
|
|
rm -rf .vim
|
|
|
|
ln -s ~/Repositories/config/vim .vim
|
2012-06-09 21:43:55 +00:00
|
|
|
|