Skip to content
pjg edited this page Sep 14, 2010 · 7 revisions

Installation:

cd
git init
git remote add origin http://github.com/pjg/dotfiles.git
git fetch
git branch master origin/master
git checkout master

Should give out a warning Already on "master".

One-liner:

 cd; git init; git remote add origin http://github.com/pjg/dotfiles.git; git fetch; git branch master origin/master; git checkout master

Staying up-to-date:

cd && git pull
Clone this wiki locally