gitnexus 1.6.9-rc.41 → 1.6.9-rc.43
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/storage/git.d.ts +1 -1
- package/dist/storage/git.js +1 -1
- package/package.json +1 -1
package/dist/storage/git.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ export declare const getCurrentCommit: (repoPath: string) => string;
|
|
|
4
4
|
* Get a stable canonical identifier for the repo's `origin` remote, if any.
|
|
5
5
|
*
|
|
6
6
|
* Used to fingerprint two on-disk clones as the same logical repository
|
|
7
|
-
* (
|
|
7
|
+
* (prevents silent graph drift across sibling clones — see #2054). `path` alone
|
|
8
8
|
* is unreliable: worktrees, "clean clone for indexing" hygiene, and
|
|
9
9
|
* multi-agent workspaces routinely have the same repo at multiple
|
|
10
10
|
* absolute paths. The remote URL is the only on-disk signal that
|
package/dist/storage/git.js
CHANGED
|
@@ -39,7 +39,7 @@ export const getCurrentCommit = (repoPath) => {
|
|
|
39
39
|
* Get a stable canonical identifier for the repo's `origin` remote, if any.
|
|
40
40
|
*
|
|
41
41
|
* Used to fingerprint two on-disk clones as the same logical repository
|
|
42
|
-
* (
|
|
42
|
+
* (prevents silent graph drift across sibling clones — see #2054). `path` alone
|
|
43
43
|
* is unreliable: worktrees, "clean clone for indexing" hygiene, and
|
|
44
44
|
* multi-agent workspaces routinely have the same repo at multiple
|
|
45
45
|
* absolute paths. The remote URL is the only on-disk signal that
|
package/package.json
CHANGED