mirror of
https://github.com/anthropics/claude-code.git
synced 2026-09-14 19:48:39 +08:00
18be13be81
Squash merge of 4 commits
9 lines
211 B
TypeScript
9 lines
211 B
TypeScript
import type Git from '../../../hooks/git'
|
|
|
|
/**
|
|
* A git dir listing mid-merge: MERGE_HEAD is a plain file.
|
|
*/
|
|
export const MERGING: readonly (readonly [string, Git.EntryKind])[] = [
|
|
['MERGE_HEAD', 'file'],
|
|
]
|