Skip to content

Commit

Permalink
Better instructions for keeping a fork updated.
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan Croak committed May 2, 2011
1 parent ead8c51 commit 57949f5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Expand Up @@ -25,16 +25,16 @@ Track thoughtbot/dotfiles

One time:

git remote add thoughtbot git@github.com:thoughtbot/dotfiles.git
git fetch thoughtbot
git checkout -b thoughtbot thoughtbot/master
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 thoughtbot
git pull --rebase
git checkout upstream
git pull
git checkout master
git merge thoughtbot
git rebase upstream

0 comments on commit 57949f5

Please sign in to comment.