Skip to content

Commit 954a038

Browse files
committed
5t45t45t54t
1 parent a6cb29c commit 954a038

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/scanners/diffScan.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,10 @@ async function scanDiff({
1717
// Отримуємо змінені файли з останнього коміту
1818
const status = await git.status();
1919

20-
console.log(`status ${status.current}`)
21-
console.log(`status ${status.modified.length}`)
22-
console.log(`status ${await git.firstCommit()}`)
20+
console.log(`git status ${status.current}`)
21+
console.log(`git created ${status.created.length}`)
22+
console.log(`git modified ${status.modified.length}`)
23+
console.log(`git renamed ${status.renamed.length}`)
2324

2425
// Збираємо файли, які були змінені
2526
const changedFiles = [

0 commit comments

Comments
 (0)