1 2 3 4 5
const { execSync } = require("child_process"); function deploy(branch) { execSync(`git push ${branch}`); }