I am assuming you already have a working directory that tracks the repository the request is made to (you need somewhere to apply the changes to, right?).
Than simply tell git fetch to get particular revision from particular repository. If you go to the linked page, you see URL https://github.com/johnsimons/NServiceBus.git and commit ID d8524d53094e8181716e. Unfortunately fetch does not like revisions, only branches, so try
git fetch https://github.com/johnsimons/NServiceBus.git master
That will download the branch to your repository (where you should already have the branch this was forked from). Than ask git whether it knows that commit id. Than you can do whatever you want with it (create a branch from that revision, merge it to another branch etc.)