Name_status.Change
type t = Volgo.Vcs.Name_status.Change.t =
| Added of Volgo.Vcs.Path_in_repo.t
| Removed of Volgo.Vcs.Path_in_repo.t
| Modified of Volgo.Vcs.Path_in_repo.t
| Copied of {
src : Volgo.Vcs.Path_in_repo.t;
dst : Volgo.Vcs.Path_in_repo.t;
similarity : Base.int;
}
| Renamed of {
src : Volgo.Vcs.Path_in_repo.t;
dst : Volgo.Vcs.Path_in_repo.t;
similarity : Base.int;
}