From: Omar Polo Subject: Re: match committed patches with got log -p -S To: Stefan Sperling Cc: gameoftrees@openbsd.org Date: Wed, 08 Jun 2022 12:06:21 +0200 Stefan Sperling wrote: > With this patch got log -S can be used to match committed patches > when used together with the -p option. This allows searching history > for specific function names, variables names, and the like. > > ok? this seems very useful! my only complaint is that doing a got_opentemp per inspected commit is quite a lot, maybe we can re-use the same fd and truncate it before usage. but this can be sort out later, ok op@