Is there a way to grep for partial words inside all code belonging to a GitHub Organization, using the web UI?
Of course, the intent is to avoid having to clone all the organization's repositories and do a local grep; that would be a cumbersome, tedious and error-prone task.
I'm aware of Search code inside a Github project, but I find the search is very misleading as it doesn't really find all results.
For example, I want to find all uses of the string DISABLE_LIBRARIES_GENERATION
in all files from the Kurento organization. Using any of these Advanced Search terms
DISABLE_LIBRARIES_GENERATION user:Kurento
DISABLE_LIBRARIES_GENERATION org:Kurento
yields these results:
- Finds
${DISABLE_LIBRARIES_GENERATION}
inkms-core/src/server/CMakeLists.txt
. - Finds
set (DISABLE_LIBRARIES_GENERATION FALSE
inkms-core/CMake/CodeGenerator.cmake
. - Finds the string in
kms-core/debian/changelog
. - Doesn't find
-DDISABLE_LIBRARIES_GENERATION=TRUE
as used inadm-scripts/kurento_get_version.sh
,adm-scripts/kurento_generate_js_module.sh
andadm-scripts/kurento_generate_java_module.sh
.