Home
last modified time | relevance | path

Searched refs:currentBranch (Results 1 – 5 of 5) sorted by relevance

/expo/tools/src/publish-packages/tasks/
H A DcheckRepositoryStatus.ts26 const currentBranch = await Git.getCurrentBranchNameAsync();
30 if (!(await checkBranchNameAsync(currentBranch))) {
38 const stats = await Git.compareBranchesAsync(currentBranch, trackingBranch);
42 `�� Your local branch ${cyan(currentBranch)} is out of sync with remote branch.`
H A DpushCommittedChanges.ts22 const currentBranch = await Git.getCurrentBranchNameAsync();
23 await Git.pushAsync({ track: currentBranch });
/expo/tools/src/commands/
H A DCherryPickCommand.ts56 const currentBranch = await Git.getCurrentBranchNameAsync(); constant
57 if (!options.from && !options.to && currentBranch === 'main') {
60 const source = options.from ?? (options.to ? currentBranch : 'main');
61 const destination = options.to ?? currentBranch; constant
/expo/ios/versioned-react-native/ABI47_0_0/ReactNative/scripts/hermes/
H A Dhermes-utils.js167 let currentBranch = execSync('git rev-parse --abbrev-ref HEAD')
174 currentBranch.endsWith('-stable') &&
/expo/tools/src/
H A DGit.ts161 const currentBranch = await this.getCurrentBranchNameAsync(); constant
162 const match = currentBranch.match(/\bsdk-(\d+)$/);