Below is the file 'revision_types.mli' from this revision. You can also download the file.


type change =
  | PATCH of string * string * string
  | ADD_FILE of string
  | DELETE_FILE of string
  | DELETE_DIR of string
  | RENAME_FILE of string * string
  | RENAME_DIR of string * string

type edge = {
    old_revision : string ;
    old_manifest : string ;
    change_set : change list ;
  }

type t = string * edge list