Searched refs:currentBranch (Results 1 – 5 of 5) sorted by relevance
26 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.`
22 const currentBranch = await Git.getCurrentBranchNameAsync();23 await Git.pushAsync({ track: currentBranch });
56 const currentBranch = await Git.getCurrentBranchNameAsync(); constant57 if (!options.from && !options.to && currentBranch === 'main') {60 const source = options.from ?? (options.to ? currentBranch : 'main');61 const destination = options.to ?? currentBranch; constant
167 let currentBranch = execSync('git rev-parse --abbrev-ref HEAD')174 currentBranch.endsWith('-stable') &&
161 const currentBranch = await this.getCurrentBranchNameAsync(); constant162 const match = currentBranch.match(/\bsdk-(\d+)$/);