]>
git.r.bdr.sh - rbdr/blog/blob - lib/remotes/git.js
d8e0cfd63e4a30e625a80abddc5ce8125a0b730d
1 const { exec
} = require('child_process');
2 const { debuglog
, promisify
} = require('util');
5 // Promisified functions
8 debuglog: debuglog('blog'),
13 // For the future: actually check if it's a valid git url
17 async
syncUp(remote
, blogDirectory
) {
18 await internals
.exec(`cd ${blogDirectory} && git init`);
19 await internals
.exec(`cd ${blogDirectory} && git add .`);
20 await internals
.exec(`cd ${blogDirectory} && git commit --allow-empty -m blog-sync-up-${Date.now()}`);
21 await internals
.exec(`cd ${blogDirectory} && git push ${remote} main --force`);
24 async
syncDown(remote
, blogDirectory
) {
25 await internals
.exec(`cd ${blogDirectory} && git init`);
26 await internals
.exec(`cd ${blogDirectory} && git checkout .`);
27 await internals
.exec(`cd ${blogDirectory} && git clean . -f`);
28 await internals
.exec(`cd ${blogDirectory} && git pull ${remote} main`);