Git(hub): Merging from a forked repo
Sometimes another guy forks your repo and is doing some awesome stuff. Although there is no pull request, you want to have these changes.
(For this tip I leave aside that you should better ask the other guy ...)
To get this changes there are three steps:
git remote add the-other-guy git://github.com/the-other-guy/awesome-repo.git
Adds the fork to your repository.
git fetch the-other-guy
Fetches the changes.
And last but not least, merge the changes:
git merge the-other-guy/master
Have fun ...
Written by Daniel Schmidt
Related protips
Have a fresh tip? Share with Coderwall community!
Post
Post a tip
Best
#Merge
Authors
Sponsored by #native_company# — Learn More
#native_title#
#native_desc#