kienamtics

This commit is contained in:
PROFERIS - Mi³osz Stocki
2026-07-08 14:53:47 +02:00
parent ed6c6a6658
commit 242df22ba6
6 changed files with 109 additions and 2 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) {}