feat: redesigned Git tab layout with improved organization

This commit is contained in:
Bohdan Triapitsyn
2025-12-19 02:48:58 +02:00
parent 71574acf19
commit bbceccfb64
17 changed files with 1726 additions and 1058 deletions
+2 -1
View File
@@ -137,7 +137,8 @@ export async function getStatus(directory) {
const git = simpleGit(directory);
try {
const status = await git.status();
// Use -uall to show all untracked files individually, not just directories
const status = await git.status(['-uall']);
const [stagedStatsRaw, workingStatsRaw] = await Promise.all([
git.raw(['diff', '--cached', '--numstat']).catch(() => ''),