Search git history for a string

Here's how to search for a string in a git repo's history.

In Current Branch

git log -Sa_string_i_want_to_search_for

In all Branches

git log -Sa_string_i_want_to_search_for --all

Internal References

External References

Article Type

General