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 a6cb29c commit 954a038Copy full SHA for 954a038
src/scanners/diffScan.js
@@ -17,9 +17,10 @@ async function scanDiff({
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()}`)
+ console.log(`git status ${status.current}`)
+ console.log(`git created ${status.created.length}`)
+ console.log(`git modified ${status.modified.length}`)
23
+ console.log(`git renamed ${status.renamed.length}`)
24
25
// Збираємо файли, які були змінені
26
const changedFiles = [
0 commit comments