]> git.r.bdr.sh - rbdr/blog/commitdiff
Force use main
authorRuben Beltran del Rio <redacted>
Fri, 9 Dec 2022 22:10:36 +0000 (23:10 +0100)
committerRuben Beltran del Rio <redacted>
Fri, 9 Dec 2022 22:10:36 +0000 (23:10 +0100)
lib/remotes/git.js

index c894122c345a0e6877528127e85d7396bb16a065..32230aeb2ab5fad4c469a6a4e7b8bb8abfcf7388 100644 (file)
@@ -15,7 +15,7 @@ module.exports = {
 
   async syncUp(remote, blogDirectory) {
 
 
   async syncUp(remote, blogDirectory) {
 
-    await internals.exec(`cd ${blogDirectory} && git init`);
+    await internals.exec(`cd ${blogDirectory} && git init -b main`);
     await internals.exec(`cd ${blogDirectory} && git add .`);
     await internals.exec(`cd ${blogDirectory} && git commit --allow-empty -m blog-sync-up-${Date.now()}`);
     await internals.exec(`cd ${blogDirectory} && git push ${remote} main --force`);
     await internals.exec(`cd ${blogDirectory} && git add .`);
     await internals.exec(`cd ${blogDirectory} && git commit --allow-empty -m blog-sync-up-${Date.now()}`);
     await internals.exec(`cd ${blogDirectory} && git push ${remote} main --force`);
@@ -23,7 +23,7 @@ module.exports = {
 
   async syncDown(remote, blogDirectory) {
 
 
   async syncDown(remote, blogDirectory) {
 
-    await internals.exec(`cd ${blogDirectory} && git init`);
+    await internals.exec(`cd ${blogDirectory} && git init -b main`);
     try {
       await internals.exec(`cd ${blogDirectory} && git checkout .`);
     }
     try {
       await internals.exec(`cd ${blogDirectory} && git checkout .`);
     }