Files
pnpm/packages/plugin-commands-publishing/src/gitChecks.ts
2021-02-15 05:06:10 +02:00

44 lines
989 B
TypeScript

import execa from 'execa'
// git checks logic is from https://github.com/sindresorhus/np/blob/master/source/git-tasks.js
export async function isGitRepo () {
try {
await execa('git', ['rev-parse', '--git-dir'])
} catch (_) {
return false
}
return true
}
export async function getCurrentBranch () {
const { stdout } = await execa('git', ['symbolic-ref', '--short', 'HEAD'])
return stdout
}
export async function isWorkingTreeClean () {
try {
const { stdout: status } = await execa('git', ['status', '--porcelain'])
if (status !== '') {
return false
}
return true
} catch (_) {
return false
}
}
export async function isRemoteHistoryClean () {
let history
try { // Gracefully handle no remote set up.
const { stdout } = await execa('git', ['rev-list', '--count', '--left-only', '@{u}...HEAD'])
history = stdout
} catch (_) {
history = null
}
if (history && history !== '0') {
return false
}
return true
}