We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46e315c commit 60758f3Copy full SHA for 60758f3
lib/git/base.rb
@@ -209,6 +209,15 @@ def lib
209
# end
210
211
#
212
+ # @param string [String] the string to search for
213
+ # @param path_limiter [String, Array] a path or array of paths to limit the search to or nil for no limit
214
+ # @param opts [Hash] options to pass to the underlying `git grep` command
215
+ #
216
+ # @option opts [Boolean] :ignore_case (false) ignore case when matching
217
+ # @option opts [Boolean] :invert_match (false) select non-matching lines
218
+ # @option opts [Boolean] :extended_regexp (false) use extended regular expressions
219
+ # @option opts [String] :object (HEAD) the object to search from
220
221
# @return [Hash<String, Array>] a hash of arrays
222
# ```Ruby
223
# {
0 commit comments