forked from thoughtbot/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Better instructions for keeping a fork updated.
- Loading branch information
Dan Croak
committed
May 2, 2011
1 parent
ead8c51
commit 57949f5
Showing
1 changed file
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,16 +25,16 @@ Track thoughtbot/dotfiles | |
|
||
One time: | ||
|
||
git remote add thoughtbot [email protected]:thoughtbot/dotfiles.git | ||
git fetch thoughtbot | ||
git checkout -b thoughtbot thoughtbot/master | ||
git remote add upstream [email protected]: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 |