Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/installer/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ export async function runInstallerWithOptions(opts: RunInstallerOptions): Promis
}

if (location === 'global') {
clack.note('cd your-project\ncodegraph init -i', 'Quick start');
clack.note('cd your-project\ncodegraph init', 'Quick start');
}

// Deliver buffered telemetry while we're already in a long interactive
Expand Down Expand Up @@ -519,7 +519,7 @@ async function initializeLocalProject(
} catch (err) {
const msg = err instanceof Error ? err.message : String(err);
clack.log.error(`Could not load native modules: ${msg}`);
clack.log.info('Skipping project initialization. Run "codegraph init -i" later.');
clack.log.info('Skipping project initialization. Run "codegraph init" later.');
return;
}

Expand Down
4 changes: 2 additions & 2 deletions src/sync/worktree.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export function worktreeMismatchWarning(m: WorktreeIndexMismatch): string {
` Running in: ${m.worktreeRoot}\n` +
` Index from: ${m.indexRoot}\n` +
`Results reflect that tree's code (often a different branch), not this worktree — ` +
`symbols changed only here are missing. Run "codegraph init -i" in this worktree ` +
`symbols changed only here are missing. Run "codegraph init" in this worktree ` +
`for a worktree-local index.`
);
}
Expand All @@ -100,7 +100,7 @@ export function worktreeMismatchNotice(m: WorktreeIndexMismatch): string {
return (
`⚠ CodeGraph results below come from a different git worktree (${m.indexRoot}), ` +
`not where you're working (${m.worktreeRoot}) — they may reflect another branch, ` +
`and symbols changed only here are missing. Run "codegraph init -i" here for a ` +
`and symbols changed only here are missing. Run "codegraph init" here for a ` +
`worktree-local index.`
);
}
Expand Down