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