Re: How to find a commit that introduces (not removes) a string?
From: Sebastian Schuberth <hidden> Date: 2016-06-15 22:52:23
On 03.11.2011 10:50, Sebastian Schuberth wrote:
I know about git log's -S / -G, but I'm unable to make these search through *introduced* strings only. Is there a way to do so?
Thanks for your suggestions. However, I ended up simply doing
$ git diff --no-color FROM..TO | grep ^+[^+] | grep WORD
which works well for my case.
--
Sebastian Schuberth