class Git::DiffPathStatus

The files and their status (e.g., added, modified, deleted) between two commits

@example Iterate over path statuses

git = Git.open('/path/to/repo')
git.diff_path_status.each { |path, status| puts "#{path}: #{status}" }

@api public