Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a URL query string for searching own GitHub Gists?

Is there a URL query string for searching only own GitHub Gists? I wouldn't care if it only worked with public Gists.

The only thing I could find is the URL for searching all public Gists, but that's not very helpful for finding own Gists

https://gist.github.com/search?q=hello+world 

Ultimate goal: quickly searching for own Gists via launcher tools (in my case Alfred) or Chrome search engine shortcuts.

like image 758
psteinweber Avatar asked Jan 18 '14 09:01

psteinweber


People also ask

How do I find my gists on GitHub?

Once you have logged into your GitHub account, click on your username in the top right corner. This will open a menu where you can see an option called 'Your gists'. Once you clicked that option, you will see your gist page.

How do you find a gist?

If you know the username you can go to https://gist.github.com/username/ and then search through them, but that only works if it's not an anonymously posted or private gist.

How do I create a gist link in GitHub?

If you go back to your Github homepage, to the right of the create button is your picture. That dropdown menu is going to give you links to your profile and settings — but more importantly your repos, projects, and gists. Click on the link for Your gists.


1 Answers

Try searching with user:<username> hello world. E.g.

https://gist.github.com/search?q=user%3Adefunkt+hello+world

like image 79
Ivan Zuzak Avatar answered Sep 24 '22 04:09

Ivan Zuzak