class Git::Status
def untracked?(file)
-
(Boolean)
-
Other tags:
- Example: Check if lib/git.rb is an untracked file. -
Parameters:
-
file
(String
) -- The name of the file.
def untracked?(file) case_aware_include?(:untracked, :lc_untracked, file) end