Method: Git::Lib#untracked_files

Defined in:
lib/git/lib.rb

#untracked_files

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



1028
1029
1030
1031
1032
# File 'lib/git/lib.rb', line 1028

def untracked_files
  command_lines('ls-files', '--others', '--exclude-standard', chdir: @git_work_dir).map do |f|
    unescape_quoted_path(f)
  end
end