Print a message when there are no changes.
(&self)
| 68 | impl Diff { |
| 69 | /// Print a message when there are no changes. |
| 70 | pub(super) fn print_no_changes(&self) { |
| 71 | print_info("No changes detected"); |
| 72 | } |
| 73 | |
| 74 | /// Check whether a repository-relative path passes the positional |
| 75 | /// file filter (`atomic diff --change <hash> <file>...`). |
no test coverage detected