12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364(*******************************************************************************)(* Volgo - a Versatile OCaml Library for Git Operations *)(* Copyright (C) 2024-2025 Mathieu Barbin <mathieu.barbin@gmail.com> *)(* *)(* This file is part of Volgo. *)(* *)(* Volgo is free software; you can redistribute it and/or modify it under *)(* the terms of the GNU Lesser General Public License as published by the *)(* Free Software Foundation either version 3 of the License, or any later *)(* version, with the LGPL-3.0 Linking Exception. *)(* *)(* Volgo is distributed in the hope that it will be useful, but WITHOUT ANY *)(* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS *)(* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License and *)(* the file `NOTICE.md` at the root of this repository for more details. *)(* *)(* You should have received a copy of the GNU Lesser General Public License *)(* and the LGPL-3.0 Linking Exception along with this library. If not, see *)(* <http://www.gnu.org/licenses/> and <https://spdx.org>, respectively. *)(*******************************************************************************)moduleChange=structtypet=Vcs.Name_status.Change.t=|AddedofPath_in_repo.t|RemovedofPath_in_repo.t|ModifiedofPath_in_repo.t|Copiedof{src:Path_in_repo.t;dst:Path_in_repo.t;similarity:int}|Renamedof{src:Path_in_repo.t;dst:Path_in_repo.t;similarity:int}include(Vcs.Name_status.Change:moduletypeofVcs.Name_status.Changewithtypet:=t)endmoduleChanged=structtypet=Vcs.Name_status.Changed.t=|Betweenof{src:Rev.t;dst:Rev.t}include(Vcs.Name_status.Changed:moduletypeofVcs.Name_status.Changedwithtypet:=t)endtypet=Change.tlistinclude(Vcs.Name_status:moduletypeofVcs.Name_statuswithtypet:=tandmoduleChange:=Vcs.Name_status.ChangeandmoduleChanged:=Vcs.Name_status.Changed)letfilest=Set.of_list(modulePath_in_repo)(Vcs.Name_status.filest)letfiles_at_srct=Set.of_list(modulePath_in_repo)(Vcs.Name_status.files_at_srct)letfiles_at_dstt=Set.of_list(modulePath_in_repo)(Vcs.Name_status.files_at_dstt)