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
@@ -452,7 +452,8 @@ pub async fn get_git_status(
.map_err(|e| e.to_string())?;
// 1. Get porcelain status
let status_output = run_git(&["status", "--porcelain", "-b", "-z"], &path)
// Use -uall to show all untracked files individually, not just directories
let status_output = run_git(&["status", "--porcelain", "-b", "-z", "-uall"], &path)
.await
.map_err(|e| e.to_string())?;