mirror of
https://github.com/anthropics/claude-code.git
synced 2026-09-14 19:48:39 +08:00
11 lines
220 B
TypeScript
11 lines
220 B
TypeScript
import type Types from '../types'
|
|
|
|
/**
|
|
* The comparisons git offers, in picker order: all three.
|
|
*/
|
|
export const GIT_BASE_MODES: readonly Types.BaseMode[] = Object.freeze([
|
|
'session',
|
|
'uncommitted',
|
|
'branch',
|
|
])
|