1 2 3 4 5
import { exec } from "node:child_process"; export function deploy(branch) { exec(`git checkout ${branch}`); }