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

Struct representing a single entry from `git ls-remote` output.

Each entry contains the object SHA and the ref name. Symref lines
(from `--symref`) are included with `sha` set to `nil`.

# `t`

```elixir
@type t() :: %Git.LsRemoteEntry{ref: String.t(), sha: String.t() | nil}
```

---

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