()
| 144 | |
| 145 | |
| 146 | def intent_to_add_files() -> list[str]: |
| 147 | _, stdout, _ = cmd_output( |
| 148 | 'git', 'diff', '--no-ext-diff', '--ignore-submodules', |
| 149 | '--diff-filter=A', '--name-only', '-z', |
| 150 | ) |
| 151 | return zsplit(stdout) |
| 152 | |
| 153 | |
| 154 | def get_all_files() -> list[str]: |
nothing calls this directly
no test coverage detected