🔧 (git) add multi push repository
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@ -58,3 +58,5 @@ server.exe
|
||||
|
||||
# uploaded files
|
||||
/uploads
|
||||
|
||||
/scripts/git-multipush.ts
|
||||
@ -8,6 +8,7 @@
|
||||
"map": "madge --image structure.svg src/index.ts",
|
||||
"lint": "bunx eslint",
|
||||
"commit": "bun x git-cz",
|
||||
"push": "bun scripts/git-multipush.ts",
|
||||
"route:sync": "bun run ./scripts/sync-routes.ts",
|
||||
"env:publish": "bun run ./scripts/create-example-env.ts"
|
||||
},
|
||||
|
||||
13
scripts/git-multipush.example.ts
Normal file
13
scripts/git-multipush.example.ts
Normal 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.");
|
||||
Reference in New Issue
Block a user