We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c1bf40 commit a6cb29cCopy full SHA for a6cb29c
src/scanners/diffScan.js
@@ -11,12 +11,16 @@ async function scanDiff({
11
openaiModel
12
}) {
13
console.log('Running diff scan for changed files');
14
-
+
15
const git = simpleGit(repoPath);
16
17
// Отримуємо змінені файли з останнього коміту
18
const status = await git.status();
19
20
+ console.log(`status ${status.current}`)
21
+ console.log(`status ${status.modified.length}`)
22
+ console.log(`status ${await git.firstCommit()}`)
23
24
// Збираємо файли, які були змінені
25
const changedFiles = [
26
...status.modified,
0 commit comments