Untracked files when there are no other changes
Dependencies
- [2]
HSEYMLO2Adding an untracked change iterator - [3]
YDKNUL6BAdd `diff --short` that lists changes without showing them - [4]
VSTBTRYEFixing a compilation error - [5]
OQQ4TGEMPrinting modifications only once in pijul diff - [6]
AGTMM5U7More informative diff --short - [7]
I52XSRUHMassive cleanup, and simplification - [*]
SXEYMYF7Fixing the bad changes in history (unfortunately, by rebooting).
Change contents
- edit in pijul/src/commands/diff.rs at line 80[9.175108][9.175108]
let txn = txn.read();if self.short {for path in untracked(&repo, &*txn)? {writeln!(stdout, "U {}", path.to_str().unwrap())?;}} else if self.untracked {for path in untracked(&repo, &*txn)? {writeln!(stdout, "{}", path.to_str().unwrap())?;}} - replacement in pijul/src/commands/diff.rs at line 218
writeln!(stdout, "U {}", path.to_str().unwrap())?;writeln!(stdout, "U {}", path.to_str().unwrap())?;