Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

github, how to search issues I posted or commented

Tags:

github

search

github only list top several issues I posted or commented, so I'm wondering how to search for the rest of them myself, of all issues that I myself participated.

like image 748
xpt Avatar asked Feb 11 '17 16:02

xpt


People also ask

How do I search comments on GitHub?

You can do this with an advanced search query. In the Issues search box, enter " commenter:username ". Or if you want to search a specific repo: " RepositoryName commenter:username ".

Does GitHub have an issue tracker?

Integrated with GitHubIssues let you track your work on GitHub, where development happens. When you mention an issue in another issue or pull request, the issue's timeline reflects the cross-reference so that you can keep track of related work.

How do I track changes in GitHub?

You can use gitk [filename] (GUI) or git log -p filename (Command line) to view all history changes of a single file easily. Save this answer. Show activity on this post. Both Github Desktop and github.com have surprisingly limited capabilities for history diffs.

Can you search in GitHub?

The GitHub Search API lets you to search for the specific item efficiently.


1 Answers

I achieved this by putting is:issue involves:my-username in GitHub search.

This chapter from official docs can be really helpful GitHub Help: Searching issues and pull requests.

like image 97
kchomski Avatar answered Sep 19 '22 22:09

kchomski