parchlinux global dotfiles
Find a file
Gabe Berke-Williams d57e4509e9 Add :Cuc
2011-07-25 13:44:56 -04:00
vim Use vividchalk by default 2011-03-24 13:07:46 -04:00
zsh/completion zsh config 2011-01-13 17:26:04 -05:00
aliases Add ls aliases 2011-04-04 10:27:03 -04:00
gvimrc Vim configuration 2011-01-13 17:54:08 -05:00
install.sh Install script 2011-01-13 17:26:25 -05:00
README.md Better instructions for keeping a fork updated. 2011-05-02 08:33:53 -07:00
vimrc Add :Cuc 2011-07-25 13:44:56 -04:00
zlogin zsh config 2011-01-13 17:26:04 -05:00
zshrc add in zshkit fun stuff 2011-04-04 10:27:03 -04:00

thoughtbot dotfiles

Flow:

  • Fork this repo.
  • Clone your fork.
  • Install.
  • Track thoughtbot/dotfiles.
  • Customize in master.
  • Update.

Install

From your cloned directory:

./install.sh

This will create symlinks for all config files in your home directory. You can safely run this file multiple times to update.

Track thoughtbot/dotfiles

One time:

git remote add upstream git@github.com:thoughtbot/dotfiles.git
git fetch upstream
git checkout -b upstream upstream/master

Update

Each time you want to update:

git checkout upstream
git pull
git checkout master
git rebase upstream