feat: version history colors and pruning

This commit is contained in:
2026-02-16 14:23:21 +01:00
parent b19e92f729
commit 1cd7d4f6ef
6 changed files with 379 additions and 17 deletions

View File

@@ -260,12 +260,15 @@ export interface GitCommitDiffFileDto {
modified: string;
}
export type GitHistorySyncStatus = 'both' | 'local-only' | 'remote-only';
export interface GitHistoryEntry {
hash: string;
shortHash: string;
date: string;
subject: string;
author: string;
syncStatus?: GitHistorySyncStatus;
}
export type GitInitPhase =