import { type Identity } from '@byted-apaas/cli-core-sdk'; export interface PipelineScmPullOptions { identity: Identity; namespace: string; cwd: string; workspaceRoot: string; mergeUse?: 'local' | 'remote'; } /** * 基于自建 scm 系统的拉取代码流程 * @param options */ export default function pipelineScmPull(options: PipelineScmPullOptions): Promise;