Finding a github repository using regular expressions


I wanted to find my github website using regular expressions. anyway, maybe?

+5
source share
2 answers

AFAIK you will need to configure this yourself. Github has its own search syntax with qualifiers that you can add, but not with a full regex. Api uses the same syntax as browser searches.

+1
source

The problem is that GitHub searches are limited to the master branch of your repos.

The simplest solution:

+1
source

All Articles