Minga.Events.GitStatusEvent (Minga v0.1.0)

Copy Markdown View Source

Payload for :git_status_changed events. Published by Git.Repo when repo status changes.

Summary

Types

t()

@type t() :: %Minga.Events.GitStatusEvent{
  ahead: non_neg_integer(),
  behind: non_neg_integer(),
  branch: String.t() | nil,
  entries: [Minga.Git.StatusEntry.t()],
  entry_base_path: String.t() | nil,
  git_root: String.t(),
  last_commit_message: String.t(),
  stash_count: non_neg_integer()
}