Lines Matching refs:commit
134 (commit) =>
135 ` ❌ ${chalk.red(commit.hash.slice(0, 10))} ${commit.authorDate} ${chalk.magenta(
136 commit.authorName
137 )} ${commit.title}`
156 choices: candidateCommits.map((commit) => ({
157 value: commit.hash,
158 short: commit.hash,
159 name: `${chalk.yellow(commit.hash.slice(0, 10))} ${commit.authorDate} ${chalk.magenta(
160 commit.authorName
161 )} ${commit.title}`,
163 default: candidateCommits.map((commit) => commit.hash),
180 const commitsToCherryPickOrdered = candidateCommits.filter((commit) =>
181 commitsToCherryPick.includes(commit.hash)
183 const commitHashes = commitsToCherryPickOrdered.map((commit) => commit.hash);