Grep in git logs
If you want to look for a specific pattern in the files in your repository, you can use the git grep command, with several options depending on your needs.
The standard grep command ignoring case, listing all files:
git grep -i http
Just get the file names list:
git grep -l http
Get the same output as 1. but with line numbers
$ git grep -in http