The problem is that a GitHub search is limited to the master branch of your repos.
The easiest solution is to:
- clone your company's github source website
- do locally a git grep, which supports basic regexp or extended POSIX regexp (
git grep -E
)
- or a pickaxe search (git log --all -S...
- or git rev-list --all|grep xxx which also allows for regexp