Cleanup helper scripts. Closes #7

This commit is contained in:
osiu97
2026-07-08 20:35:59 +02:00
parent 75ce38daf7
commit 1a94ca3947
11 changed files with 3 additions and 1 deletions
+7
View File
@@ -0,0 +1,7 @@
const { execSync } = require('child_process');
const fs = require('fs');
try {
const log = execSync('git log -p -n 10 src/main.cpp', { encoding: 'utf8' });
fs.writeFileSync('git_log.txt', log);
} catch(e) {}