Skip to content

Instantly share code, notes, and snippets.

@wteuber
Created August 13, 2024 18:27
Show Gist options
  • Save wteuber/bd50e28d687654923fcb8d3a65b69dc5 to your computer and use it in GitHub Desktop.
Save wteuber/bd50e28d687654923fcb8d3a65b69dc5 to your computer and use it in GitHub Desktop.
List unique PRs for search_term
export PAGER="cat"
git --no-pager log -S'search_term' --source --all --pretty=format:'%H' | xargs -I {} gh pr list --search "{}" --state merged --json url -q '.[].url' | sort -u
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment