UNPKG

sync-worktrees

Version:

Automatically synchronize Git worktrees with remote branches - perfect for multi-branch development workflows

16 lines 393 B
export interface SyncMetadata { lastSyncCommit: string; lastSyncDate: string; upstreamBranch: string; createdFrom: { branch: string; commit: string; }; syncHistory: SyncHistoryEntry[]; } export interface SyncHistoryEntry { date: string; commit: string; action: "created" | "updated" | "fetched"; } //# sourceMappingURL=sync-metadata.d.ts.map