MCPcopy
hub / github.com/onlook-dev/onlook / GitCommit

Interface GitCommit

packages/git/src/git.ts:19–25  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

17import path from 'path';
18
19export interface GitCommit {
20 oid: string;
21 message: string;
22 displayName: string | null;
23 author: { name: string; email: string };
24 timestamp: number;
25}
26
27const GIT_AUTHOR = { name: 'Onlook', email: 'git@onlook.com' };
28const DISPLAY_NAME_NAMESPACE = 'onlook-display-name';

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected