Method: Git::Status#untracked
- Defined in:
- lib/git/status.rb
#untracked ⇒ Enumerable
Returns an Enumerable containing files that are not tracked in git. File path starts at git base directory
81 82 83 |
# File 'lib/git/status.rb', line 81 def untracked @files.select { |_k, f| f.untracked } end |