# `Git.DiffFile`
[🔗](https://github.com/joshrotenberg/git_wrapper_ex/blob/main/lib/git/diff_file.ex#L1)

Parsed representation of a single file's contribution to a `git diff --stat`.

Contains the file path, insertion and deletion counts, and a flag for
binary files (which do not have line-level stats).

# `t`

```elixir
@type t() :: %Git.DiffFile{
  binary: boolean(),
  deletions: non_neg_integer(),
  insertions: non_neg_integer(),
  path: String.t()
}
```

---

*Consult [api-reference.md](api-reference.md) for complete listing*
