Pull in upstream changes to your forked repo.
Wednesday 4, January 2012
Usually you need to get upstream changes to your forked repo. To do that, just execute these lines:
$ git fetch upstream $ git merge upstream/master
First line gets changes for upstream and second one merge these changes into your forked repository.




