What should I do if I want to search the code exactly on github?
When I search def hello():
in a repository on github.com to see the definition of a function called hello, def and hello appear.Double quotation marks don't work.
What should I do?
In my case, I often use the following methods.
Especially 2. is powerful (lol
)
How about searching github?
The first is "int main"
to match exactly, and the second is int main
to search for both int
and main
.
© 2024 OneMinuteCode. All rights reserved.