diff options
| author | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2022-12-09 23:10:36 +0100 |
|---|---|---|
| committer | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2022-12-09 23:10:36 +0100 |
| commit | a5315f49f6b16c892f00509e2a27117ffd167936 (patch) | |
| tree | 34ba44ebff0492d643a7b36be5344f8c7f5c08ec /lib | |
| parent | b0c3bb911306b2468152cf8a83c28eca843b7647 (diff) | |
Force use main
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/remotes/git.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/remotes/git.js b/lib/remotes/git.js index c894122..32230ae 100644 --- a/lib/remotes/git.js +++ b/lib/remotes/git.js @@ -15,7 +15,7 @@ module.exports = { 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`); @@ -23,7 +23,7 @@ module.exports = { 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 .`); } |