Module Name_status.Change

type t = Vcs.Name_status.Change.t =
  1. | Added of Vcs.Path_in_repo.t
  2. | Removed of Vcs.Path_in_repo.t
  3. | Modified of Vcs.Path_in_repo.t
  4. | Copied of {
    1. src : Vcs.Path_in_repo.t;
    2. dst : Vcs.Path_in_repo.t;
    3. similarity : Base.int;
    }
  5. | Renamed of {
    1. src : Vcs.Path_in_repo.t;
    2. dst : Vcs.Path_in_repo.t;
    3. similarity : Base.int;
    }
include module type of Vcs.Name_status.Change with type t := t
val sexp_of_t : t -> Sexplib0.Sexp.t
val equal : t -> t -> bool