🔧 (git) add multi push repository

This commit is contained in:
unknown
2025-07-02 10:11:45 +07:00
parent 5465ba4e81
commit ee88b6f8b4
3 changed files with 17 additions and 1 deletions

View File

@ -0,0 +1,13 @@
import { execSync } from "child_process";
const remotes = ["origin"];
for (const remote of remotes) {
console.log(`Pushing to ${remote}...`);
try {
execSync(`git push ${remote} main`, { stdio: "inherit" });
} catch (err) {
console.error(`❌ Failed to push to ${remote}`);
}
}
console.log("✅ All remotes processed.");