Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why git search does not find string

Tags:

git

search

I already used search and also found another post with answers, but I can't find the following string in my history (using git bash on Windows):

$ git log --all -S'paste0(gsub("0",""'

And it must have been added somewhere - I think:

V1

and later

enter image description here

Any idea what can go wrong? Did I miss anything?

like image 394
Christoph Avatar asked May 17 '26 00:05

Christoph


1 Answers

There seems to be a space after the comma in the screenshot, but not in your query.

like image 130
choroba Avatar answered May 20 '26 01:05

choroba