Skip to content

Commit

Permalink
fix(core): set default branch to main if no git
Browse files Browse the repository at this point in the history
  • Loading branch information
xiongemi committed Nov 11, 2024
1 parent 37e31be commit b0ee13e
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion packages/nx/src/command-line/init/implementation/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ import { existsSync, readFileSync, writeFileSync } from 'fs';
import { printSuccessMessage } from '../../../nx-cloud/generators/connect-to-nx-cloud/connect-to-nx-cloud';
import { repoUsesGithub } from '../../../nx-cloud/utilities/url-shorten';
import { connectWorkspaceToCloud } from '../../connect/connect-to-nx-cloud';
import { deduceDefaultBase as gitInitDefaultBase } from '../../../utils/default-base';

export function createNxJsonFile(
repoRoot: string,
Expand Down Expand Up @@ -93,7 +94,15 @@ function deduceDefaultBase() {
});
return 'next';
} catch {
return 'master';
try {
execSync(`git rev-parse --verify master`, {
stdio: ['ignore', 'ignore', 'ignore'],
windowsHide: false,
});
return 'master';
} catch {
return gitInitDefaultBase();
}
}
}
}
Expand Down

0 comments on commit b0ee13e

Please sign in to comment.