Nested Git Repo Stash Safety When a parent repo contains a nested git repository (gitlink pointer), in the parent only captures the SHA pointer to the nested repo, not the nested repo's actual working-tree changes. Modified files inside the nested repo are invisible to the parent's stash and will survive or be left behind unpredictably. Always manually snapshot or stash changes inside nested repos separately before performing parent-repo operations. Use to detect (modified gitlink) entries indicating a dirty nested repo state. ---