<div dir="ltr">I learnt a cool new trick today from [1].<div>From the opensmalltalk-vm root folder...</div><div>$ vi .git/config</div><div><br></div><div>I ended up with...</div><div><div><div>[remote "origin"]</div><div>        url = git@github.com:OpenSmalltalk/opensmalltalk-vm.git</div><div>        fetch = +refs/heads/*:refs/remotes/origin/*</div><div>        fetch = +refs/pull/*/head:refs/remotes/PR/*</div></div><div><br></div><div>and thus for example can now do...</div><div>$ git fetch origin     # i.e. from github server</div><div>$ git checkout PR/136</div><div><br></div><div>Per the provided message, you review the PR in a detached HEAD state since its not a local branch, but that is no big deal for read only and instructions are provided to use -b to turn it into a local branch.</div><div><br></div><div>Back to your regularly scheduled program via...</div><div>$ git checkout Cog</div><div><br></div><div>cheers -ben</div><div><br></div><div>[1] <a href="https://gist.github.com/piscisaureus/3342247">https://gist.github.com/piscisaureus/3342247</a><div><br></div><div><br></div></div></div></div>