Set zsh as your login shell.
chsh -s /bin/zsh
First, fork this repo on Github.
Then, clone your Github fork onto your laptop and install it:
git clone [email protected]:your-github-name/dotfiles.git
cd dotfiles
./install.sh
This will create symlinks for config files in your home directory. If you include the line "DO NOT EDIT BELOW THIS LINE" anywhere in a config file, it will copy that file over instead of symlinking it, and it will leave everything above that line in your local config intact.
You can safely run ./install.sh
multiple times to update.
You should be able to experiment with your own dotfiles, save them in version
control, and still get updates from thoughtbot/dotfiles
.
The master
branch is for your customizations and the upstream
branch is for
thoughtbot's updates.
You only have to do this once:
git remote add upstream [email protected]:thoughtbot/dotfiles.git
git fetch upstream
git checkout -b upstream upstream/master
Put your customizations at the top of files, separated by "DO NOT EDIT BELOW THIS LINE."
For example, the top of your ~/.gitconfig
might look like this:
[user]
name = Joe Ferris
email = [email protected]
# DO NOT EDIT BELOW THIS LINE
[push]
default = current
The top of your ~/.zlogin
might look like this:
# RVM
[[ -s '/Users/croaky/.rvm/scripts/rvm' ]] && source '/Users/croaky/.rvm/scripts/rvm'
# DO NOT EDIT BELOW THIS LINE
# recommended by brew doctor
export PATH="/usr/local/bin:/usr/local/sbin:$PATH"
Each time you want to include thoughtbot's changes:
git checkout upstream
git pull
git checkout master
git rebase upstream
Thank you, contributors!
Dotfiles is maintained by thoughtbot, inc The names and logos for thoughtbot are trademarks of thoughtbot, inc.
Dotfiles is © 2009-2012 thoughtbot, inc. It is free software and may be redistributed under the terms specified in the MIT-LICENSE file.