UNPKG

ice.fo.utils

Version:

6 lines (4 loc) 163 B
const { execSync } = require('child_process'); module.exports = function checkoutToBranch(name) { return execSync(`git checkout ${name}`).toString().trim(); };