|
|
|
|
|
by weinzierl
3780 days ago
|
|
> there is still no way to search commits I guess you mean commit messages, because you can search
the code on Github. For the messages, if your repository is public you can use Google like this: > Search all branches of all crawled repos for "change license"
>
> "change license" site:https://github.com/*/*/commits
>
> Search master branch of all crawled repos for "change license"
>
> "change license" site:https://github.com/*/*/commits/master
>
> Search master branch of all crawled twitter repos for "change license"
>
> "change license" site:https://github.com/twitter/*/commits/master
>
> Search all branches of twitter/some_project repo for "change license"
>
> "change license" site:https://github.com/twitter/some_project/commits
Source: technosaurus [1], Stackoverflow [2].[1] http://stackoverflow.com/users/1162141/technosaurus [2] http://stackoverflow.com/a/29710705 |
|