Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Github: How to search in all Release notes of a repository?

I want to search all release notes (including all past release notes) of Pandoc Repository, Github, for search term: #4817. How can I do it?

like image 262
Porcupine Avatar asked Jan 19 '26 06:01

Porcupine


1 Answers

It appears from the #nnnn format that you are looking for a PR or an Issue. One can look-up Issue #4817 by using Github API directly:

https://github.com/search?q=4817+repo:jgm/pandoc+is:issue

Note that '#' had to be omitted.

To look among commits, git command that extract for later search the entire log for the repo has been described earlier:

git log --oneline --decorate
like image 137
Walter K Avatar answered Jan 21 '26 23:01

Walter K