(path)
| 1360 | return git_repo.walk(target, flags) |
| 1361 | |
| 1362 | def _get_git_path(path): |
| 1363 | return path if sys.platform != 'win32' else path.replace('\\', '/') |
| 1364 | |
| 1365 | def _check_path_is_repo_relative(path): |
| 1366 | if os.path.isabs(path): |
no outgoing calls
no test coverage detected