Shallow clone not truly shallow for pull requests

Adding git: depth: 1 to your .travis.yml runs…

git clone --depth=1 git@github.com:foo/bar.git foo/bar
cd foo/bar
git fetch origin +refs/pull/1234/merge:

This latter command should be git fetch --depth=1 origin +refs/pull/1234/merge: