When searching for a regular string in Git commits, you can use this command:
git log -S'string'
But searching for a tab character doesn't work:
git log -S'\t'
I've also tried using --pickaxe-regex
and --perl-regexp
with variations of tab representations with no luck.
How do you express a tab character so it can be found?