This commit is contained in:
Christoph Brandau
2026-06-27 17:42:58 +02:00
parent ef1974f31f
commit 25700821d1
6 changed files with 976 additions and 143 deletions
+4
View File
@@ -38,6 +38,7 @@ export interface GitCommit {
author_email: string;
date: string;
refs: string[];
parents: string[];
files: GitCommitFile[];
}
@@ -76,4 +77,7 @@ export interface ConflictFile {
ours: string | null;
theirs: string | null;
base: string | null;
binary: boolean;
ours_size: number | null;
theirs_size: number | null;
}