[support question] How to find all my comments #58062
-
|
Is there an option to list or search for all my comments written across various GitHub projects, usually on issues tabs? |
Beta Was this translation helpful? Give feedback.
Replies: 17 comments 24 replies
-
|
Hey, how are you? I didn't understand your question very well, but if you're talking about commits, you can find them in this part here: all updates made to your project and the comments you made when updating with commits (like |
Beta Was this translation helpful? Give feedback.
-
|
I my issues I see Created, Assigned, Mentioned. What about all that I written but I didn't started, I am not assigned and were not mentioned? How to find all my comments in issues of any project? |
Beta Was this translation helpful? Give feedback.
-
|
To find all your comments in the issues of any project on GitHub, you can use the GitHub search functionality with a specific query. Here's how you can do it:
GitHub will display a list of issues where you have commented, regardless of whether you created them, were assigned to them, or were mentioned in them. You can further refine your search by adding additional filters to the query if you want to narrow down the results. For example, you can specify a particular repository or search for comments within a specific timeframe. Here's an example query that includes a repository filter:
Using these search queries, you should be able to find all your comments in the issues of any project on GitHub, even if you didn't create them, weren't assigned to them, and weren't mentioned in them. example: Hope this helps! |
Beta Was this translation helpful? Give feedback.
This comment was marked as off-topic.
This comment was marked as off-topic.
-
|
This doesn't work ? Here for example but I just made a comment in an issue today, and it does not show up. Example This was posted 20 minutes ago and it does not show up in the search I would like a place that just has all my lastest comments in it. It should be right here |
Beta Was this translation helpful? Give feedback.
-
|
I have the same issue as @shodanx2. Using For example, I have a comment I made 5 days ago in a particular repo that doesn't show up. However, if I specify the |
Beta Was this translation helpful? Give feedback.
-
|
Go to your profile, scroll down, keep clicking "show more activity" until you find the post(s) you are looking for |
Beta Was this translation helpful? Give feedback.
-
|
This does not work for commit comments. How to find my comments to various code commits? They are even not shown in recent actvity. |
Beta Was this translation helpful? Give feedback.
This comment was marked as off-topic.
This comment was marked as off-topic.
-
|
I have the same question with @realyukii. Is it possible to search comments on gists? |
Beta Was this translation helpful? Give feedback.
-
|
Cluttered and non functioning properly. |
Beta Was this translation helpful? Give feedback.
This comment was marked as off-topic.
This comment was marked as off-topic.
-
|
I built this to show my comments on issues/discussions and when that thread was last touched/updated. It's insane I had to build something custom for this. https://github.com/aherrick/GitHubActivityViewer commenter:your-username only shows when the thread was last closed, etc. but thats worthless if the conversation continues on while "closed" |
Beta Was this translation helpful? Give feedback.
-
|
All of the comments (in this topic) from developers (or moderators or whatever title github gives such people) seem to be just workarounds. We appreciate those (when they work), but what we really need is for our USER PROFILE PAGE (or whatever it's called) to have a section that's called "COMMENTS HISTORY". I don't expect this change to be made any time soon, but it's really the ONLY way to let people do this, because these workarounds themselves require people to (somehow) 'know' about them (even though this lonely topic is the only part of Github that I'VE ever even heard about them), & sometimes the workarounds don't work. |
Beta Was this translation helpful? Give feedback.
-
|
That’s a handy trick, I didn’t realize you could filter by commenter across issues. Makes it way easier to track past discussions without digging through repos manually. Thanks for sharing. |
Beta Was this translation helpful? Give feedback.








To find all your comments in the issues of any project on GitHub, you can use the GitHub search functionality with a specific query. Here's how you can do it:
is:issue commenter:your_username2. Replace your_username with your actual GitHub username. This query searches for all issues where you have commented.
GitHub will display a list of issues where you have commented, regardless of whether you created them, were assigned to them, or were mentioned in them.
You can further refine your search by adding additional filters to the query if you want to narrow down the results. For example, …