mirror of
https://github.com/jj-vcs/jj.git
synced 2026-07-09 18:34:06 +08:00
This change makes status collapse directories which don't contain any tracked files into one line so that large untracked directories don't clutter up the status with loads of files. For example for a tree like this: ``` T src/main.rs U src/lib.rs U tmp/a.txt U tmp/b.txt ``` Previously the status would display these untracked paths: ``` ? src/lib.rs ? tmp/a.txt ? tmp/b.txt ``` With this change it now looks like this: ``` ? src/lib.rs ? tmp/ ```
18 KiB
18 KiB