I want to fetch the list of Pull Requests using git.
Github has the support: https://stackoverflow.com/questions/27567846/how-can-i-check-out-a-github-pull-request-with-git
We can just add this to .git/config:
[remote "origin"]
fetch = +refs/pull/*/head:refs/remotes/origin/pr/*
But when I tried the same method for AZDO, it didn't fetch anything. I even tried git-pr from the git-extras package.