Last active
November 10, 2021 19:08
-
-
Save mbrochh/964057 to your computer and use it in GitHub Desktop.
Fast Forward Your Fork
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
# kudos to https://github.com/drewlesueur | |
# stolen from here: https://github.com/blog/266-fast-forward-your-fork#comment-11535 | |
git checkout -b upstream-master | |
git remote add upstream git://github.com/documentcloud/underscore.git | |
git pull upstream master | |
git checkout master // [my master branch] | |
git merge upstream-master | |
git push origin master |
Awesome, thanks! Google brought me here, since that original blog post's comment thread is apparently gone...
Awesome, thanks for posting this!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Brilliant! Thanks a million! :)