Whether `path` (a repo-relative git path) is a git-excluded Atomic shadow / provenance path that Rule V4 forbids from any shadow commit.
(path: &str)
| 394 | /// Whether `path` (a repo-relative git path) is a git-excluded Atomic shadow / |
| 395 | /// provenance path that Rule V4 forbids from any shadow commit. |
| 396 | fn is_forbidden_shadow_path(path: &str) -> bool { |
| 397 | path == ".atomicignore" || path.starts_with(".atomic/") || path.starts_with(".vault/") |
| 398 | } |
| 399 | |
| 400 | /// Discard a candidate staging by restoring the git index from HEAD's tree, |
| 401 | /// leaving git byte-identical to its pre-operation state (the working copy is |
no outgoing calls
no test coverage detected