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`);
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 .`);
}