"When a repo is cloned, it has a default remote called origin that points to your fork on GitHub, not the original repo it was forked from. To keep track of the original repo, you need to add another remote named upstream:"
—
アップストリームのリポジトリから取ってくる場合にはリモートリポジトリとしてアップストリームを追加してやる。つまり、$ git remote add upstream git://~ して$ git fetch upstream みたいな感じで。