gitstore 0.58.3__tar.gz
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.
- gitstore-0.58.3/.claude/settings.local.json +58 -0
- gitstore-0.58.3/.gitignore +7 -0
- gitstore-0.58.3/.readthedocs.yaml +12 -0
- gitstore-0.58.3/CHANGELOG.md +898 -0
- gitstore-0.58.3/LICENSE +191 -0
- gitstore-0.58.3/Makefile +18 -0
- gitstore-0.58.3/PKG-INFO +27 -0
- gitstore-0.58.3/README.md +349 -0
- gitstore-0.58.3/docs/api.md +256 -0
- gitstore-0.58.3/docs/cli.md +803 -0
- gitstore-0.58.3/docs/drop-compat-layer.md +295 -0
- gitstore-0.58.3/docs/index.md +32 -0
- gitstore-0.58.3/docs/paths.md +566 -0
- gitstore-0.58.3/docs/sqlite-backend-migration.md +187 -0
- gitstore-0.58.3/docs/testing.md +133 -0
- gitstore-0.58.3/interop/fixtures.json +69 -0
- gitstore-0.58.3/interop/py_read_test.py +198 -0
- gitstore-0.58.3/interop/py_write.py +65 -0
- gitstore-0.58.3/interop/run.sh +63 -0
- gitstore-0.58.3/interop/ts_read.test.ts +258 -0
- gitstore-0.58.3/interop/ts_write.ts +94 -0
- gitstore-0.58.3/mkdocs.yml +42 -0
- gitstore-0.58.3/pyproject.toml +50 -0
- gitstore-0.58.3/requirements-docs.txt +2 -0
- gitstore-0.58.3/rs/.gitignore +1 -0
- gitstore-0.58.3/rs/Cargo.lock +2153 -0
- gitstore-0.58.3/rs/Cargo.toml +33 -0
- gitstore-0.58.3/rs/LICENSE +191 -0
- gitstore-0.58.3/rs/README.md +27 -0
- gitstore-0.58.3/rs/examples/rs_read.rs +383 -0
- gitstore-0.58.3/rs/examples/rs_write.rs +126 -0
- gitstore-0.58.3/rs/src/batch.rs +134 -0
- gitstore-0.58.3/rs/src/copy.rs +648 -0
- gitstore-0.58.3/rs/src/error.rs +121 -0
- gitstore-0.58.3/rs/src/fs.rs +1892 -0
- gitstore-0.58.3/rs/src/glob.rs +75 -0
- gitstore-0.58.3/rs/src/lib.rs +57 -0
- gitstore-0.58.3/rs/src/lock.rs +32 -0
- gitstore-0.58.3/rs/src/mirror.rs +31 -0
- gitstore-0.58.3/rs/src/notes.rs +603 -0
- gitstore-0.58.3/rs/src/paths.rs +191 -0
- gitstore-0.58.3/rs/src/refdict.rs +376 -0
- gitstore-0.58.3/rs/src/reflog.rs +100 -0
- gitstore-0.58.3/rs/src/store.rs +202 -0
- gitstore-0.58.3/rs/src/tree.rs +450 -0
- gitstore-0.58.3/rs/src/types.rs +478 -0
- gitstore-0.58.3/rs/tests/common/mod.rs +25 -0
- gitstore-0.58.3/rs/tests/integration.rs +229 -0
- gitstore-0.58.3/rs/tests/test_apply.rs +546 -0
- gitstore-0.58.3/rs/tests/test_batch.rs +557 -0
- gitstore-0.58.3/rs/tests/test_copy.rs +1015 -0
- gitstore-0.58.3/rs/tests/test_copy_ref.rs +482 -0
- gitstore-0.58.3/rs/tests/test_fs_read.rs +494 -0
- gitstore-0.58.3/rs/tests/test_fs_write.rs +834 -0
- gitstore-0.58.3/rs/tests/test_glob.rs +315 -0
- gitstore-0.58.3/rs/tests/test_history.rs +1124 -0
- gitstore-0.58.3/rs/tests/test_move.rs +356 -0
- gitstore-0.58.3/rs/tests/test_notes.rs +754 -0
- gitstore-0.58.3/rs/tests/test_stat.rs +310 -0
- gitstore-0.58.3/rs/tests/test_store.rs +656 -0
- gitstore-0.58.3/rs/tests/test_types.rs +256 -0
- gitstore-0.58.3/scripts/test-parity.sh +100 -0
- gitstore-0.58.3/src/gitstore/__init__.py +20 -0
- gitstore-0.58.3/src/gitstore/_exclude.py +121 -0
- gitstore-0.58.3/src/gitstore/_fileobj.py +143 -0
- gitstore-0.58.3/src/gitstore/_fuse.py +202 -0
- gitstore-0.58.3/src/gitstore/_glob.py +16 -0
- gitstore-0.58.3/src/gitstore/_lock.py +76 -0
- gitstore-0.58.3/src/gitstore/_objsize.py +107 -0
- gitstore-0.58.3/src/gitstore/batch.py +184 -0
- gitstore-0.58.3/src/gitstore/cli/__init__.py +6 -0
- gitstore-0.58.3/src/gitstore/cli/_archive.py +382 -0
- gitstore-0.58.3/src/gitstore/cli/_basic.py +1059 -0
- gitstore-0.58.3/src/gitstore/cli/_cp.py +522 -0
- gitstore-0.58.3/src/gitstore/cli/_helpers.py +610 -0
- gitstore-0.58.3/src/gitstore/cli/_mirror.py +98 -0
- gitstore-0.58.3/src/gitstore/cli/_mount.py +79 -0
- gitstore-0.58.3/src/gitstore/cli/_notes.py +133 -0
- gitstore-0.58.3/src/gitstore/cli/_refs.py +235 -0
- gitstore-0.58.3/src/gitstore/cli/_serve.py +75 -0
- gitstore-0.58.3/src/gitstore/cli/_sync.py +318 -0
- gitstore-0.58.3/src/gitstore/cli/_watch.py +80 -0
- gitstore-0.58.3/src/gitstore/cli/_web.py +414 -0
- gitstore-0.58.3/src/gitstore/copy/__init__.py +56 -0
- gitstore-0.58.3/src/gitstore/copy/_io.py +187 -0
- gitstore-0.58.3/src/gitstore/copy/_ops.py +1079 -0
- gitstore-0.58.3/src/gitstore/copy/_resolve.py +469 -0
- gitstore-0.58.3/src/gitstore/copy/_types.py +207 -0
- gitstore-0.58.3/src/gitstore/exceptions.py +9 -0
- gitstore-0.58.3/src/gitstore/fs.py +1401 -0
- gitstore-0.58.3/src/gitstore/mirror.py +303 -0
- gitstore-0.58.3/src/gitstore/notes.py +451 -0
- gitstore-0.58.3/src/gitstore/py.typed +0 -0
- gitstore-0.58.3/src/gitstore/repo.py +598 -0
- gitstore-0.58.3/src/gitstore/tree.py +353 -0
- gitstore-0.58.3/tests/__init__.py +0 -0
- gitstore-0.58.3/tests/conftest.py +100 -0
- gitstore-0.58.3/tests/test_apply.py +306 -0
- gitstore-0.58.3/tests/test_auto_create.py +295 -0
- gitstore-0.58.3/tests/test_backup_restore.py +277 -0
- gitstore-0.58.3/tests/test_batch.py +258 -0
- gitstore-0.58.3/tests/test_cli.py +1014 -0
- gitstore-0.58.3/tests/test_cli_archive.py +996 -0
- gitstore-0.58.3/tests/test_cli_cp.py +1231 -0
- gitstore-0.58.3/tests/test_cli_ls.py +365 -0
- gitstore-0.58.3/tests/test_cli_refs.py +631 -0
- gitstore-0.58.3/tests/test_cli_web.py +827 -0
- gitstore-0.58.3/tests/test_cmp_cli.py +231 -0
- gitstore-0.58.3/tests/test_copy.py +1504 -0
- gitstore-0.58.3/tests/test_copy_ref.py +299 -0
- gitstore-0.58.3/tests/test_exclude.py +258 -0
- gitstore-0.58.3/tests/test_fileobj.py +130 -0
- gitstore-0.58.3/tests/test_fs_read.py +305 -0
- gitstore-0.58.3/tests/test_fs_write.py +710 -0
- gitstore-0.58.3/tests/test_fuse.py +318 -0
- gitstore-0.58.3/tests/test_glob.py +229 -0
- gitstore-0.58.3/tests/test_head.py +171 -0
- gitstore-0.58.3/tests/test_history.py +206 -0
- gitstore-0.58.3/tests/test_integration.py +36 -0
- gitstore-0.58.3/tests/test_message.py +95 -0
- gitstore-0.58.3/tests/test_move.py +120 -0
- gitstore-0.58.3/tests/test_notes.py +485 -0
- gitstore-0.58.3/tests/test_objsize.py +117 -0
- gitstore-0.58.3/tests/test_ref_path.py +834 -0
- gitstore-0.58.3/tests/test_repo.py +300 -0
- gitstore-0.58.3/tests/test_serve.py +154 -0
- gitstore-0.58.3/tests/test_stat.py +290 -0
- gitstore-0.58.3/tests/test_sync.py +1490 -0
- gitstore-0.58.3/tests/test_sync_api.py +169 -0
- gitstore-0.58.3/tests/test_tree.py +191 -0
- gitstore-0.58.3/tests/test_watch.py +215 -0
- gitstore-0.58.3/ts/.gitignore +2 -0
- gitstore-0.58.3/ts/README.md +24 -0
- gitstore-0.58.3/ts/deno.json +9 -0
- gitstore-0.58.3/ts/deno.lock +953 -0
- gitstore-0.58.3/ts/dist/batch.d.ts +72 -0
- gitstore-0.58.3/ts/dist/batch.js +139 -0
- gitstore-0.58.3/ts/dist/batch.js.map +1 -0
- gitstore-0.58.3/ts/dist/copy.d.ts +214 -0
- gitstore-0.58.3/ts/dist/copy.js +1210 -0
- gitstore-0.58.3/ts/dist/copy.js.map +1 -0
- gitstore-0.58.3/ts/dist/fs.d.ts +557 -0
- gitstore-0.58.3/ts/dist/fs.js +1229 -0
- gitstore-0.58.3/ts/dist/fs.js.map +1 -0
- gitstore-0.58.3/ts/dist/gitstore.d.ts +74 -0
- gitstore-0.58.3/ts/dist/gitstore.js +131 -0
- gitstore-0.58.3/ts/dist/gitstore.js.map +1 -0
- gitstore-0.58.3/ts/dist/glob.d.ts +14 -0
- gitstore-0.58.3/ts/dist/glob.js +68 -0
- gitstore-0.58.3/ts/dist/glob.js.map +1 -0
- gitstore-0.58.3/ts/dist/index.d.ts +34 -0
- gitstore-0.58.3/ts/dist/index.js +47 -0
- gitstore-0.58.3/ts/dist/index.js.map +1 -0
- gitstore-0.58.3/ts/dist/lock.d.ts +15 -0
- gitstore-0.58.3/ts/dist/lock.js +71 -0
- gitstore-0.58.3/ts/dist/lock.js.map +1 -0
- gitstore-0.58.3/ts/dist/mirror.d.ts +24 -0
- gitstore-0.58.3/ts/dist/mirror.js +185 -0
- gitstore-0.58.3/ts/dist/mirror.js.map +1 -0
- gitstore-0.58.3/ts/dist/notes.d.ts +146 -0
- gitstore-0.58.3/ts/dist/notes.js +506 -0
- gitstore-0.58.3/ts/dist/notes.js.map +1 -0
- gitstore-0.58.3/ts/dist/paths.d.ts +16 -0
- gitstore-0.58.3/ts/dist/paths.js +43 -0
- gitstore-0.58.3/ts/dist/paths.js.map +1 -0
- gitstore-0.58.3/ts/dist/refdict.d.ts +117 -0
- gitstore-0.58.3/ts/dist/refdict.js +266 -0
- gitstore-0.58.3/ts/dist/refdict.js.map +1 -0
- gitstore-0.58.3/ts/dist/reflog.d.ts +18 -0
- gitstore-0.58.3/ts/dist/reflog.js +68 -0
- gitstore-0.58.3/ts/dist/reflog.js.map +1 -0
- gitstore-0.58.3/ts/dist/tree.d.ts +63 -0
- gitstore-0.58.3/ts/dist/tree.js +267 -0
- gitstore-0.58.3/ts/dist/tree.js.map +1 -0
- gitstore-0.58.3/ts/dist/types.d.ts +334 -0
- gitstore-0.58.3/ts/dist/types.js +267 -0
- gitstore-0.58.3/ts/dist/types.js.map +1 -0
- gitstore-0.58.3/ts/package-lock.json +2347 -0
- gitstore-0.58.3/ts/package.json +58 -0
- gitstore-0.58.3/ts/src/batch.ts +177 -0
- gitstore-0.58.3/ts/src/copy.ts +1387 -0
- gitstore-0.58.3/ts/src/fs.ts +1486 -0
- gitstore-0.58.3/ts/src/gitstore.ts +162 -0
- gitstore-0.58.3/ts/src/glob.ts +65 -0
- gitstore-0.58.3/ts/src/index.ts +85 -0
- gitstore-0.58.3/ts/src/lock.ts +81 -0
- gitstore-0.58.3/ts/src/mirror.ts +216 -0
- gitstore-0.58.3/ts/src/notes.ts +571 -0
- gitstore-0.58.3/ts/src/paths.ts +42 -0
- gitstore-0.58.3/ts/src/refdict.ts +291 -0
- gitstore-0.58.3/ts/src/reflog.ts +93 -0
- gitstore-0.58.3/ts/src/tree.ts +373 -0
- gitstore-0.58.3/ts/src/types.ts +516 -0
- gitstore-0.58.3/ts/tests/apply.test.ts +229 -0
- gitstore-0.58.3/ts/tests/batch.test.ts +231 -0
- gitstore-0.58.3/ts/tests/copy-ref.test.ts +308 -0
- gitstore-0.58.3/ts/tests/copy.test.ts +794 -0
- gitstore-0.58.3/ts/tests/deno_compat_test.ts +589 -0
- gitstore-0.58.3/ts/tests/fs-read.test.ts +355 -0
- gitstore-0.58.3/ts/tests/fs-write.test.ts +527 -0
- gitstore-0.58.3/ts/tests/glob.test.ts +214 -0
- gitstore-0.58.3/ts/tests/head.test.ts +44 -0
- gitstore-0.58.3/ts/tests/helpers.ts +64 -0
- gitstore-0.58.3/ts/tests/history.test.ts +148 -0
- gitstore-0.58.3/ts/tests/integration.test.ts +19 -0
- gitstore-0.58.3/ts/tests/message.test.ts +132 -0
- gitstore-0.58.3/ts/tests/move.test.ts +161 -0
- gitstore-0.58.3/ts/tests/notes.test.ts +543 -0
- gitstore-0.58.3/ts/tests/repo.test.ts +301 -0
- gitstore-0.58.3/ts/tests/stat.test.ts +253 -0
- gitstore-0.58.3/ts/tests/sync-api.test.ts +32 -0
- gitstore-0.58.3/ts/tests/sync.test.ts +1253 -0
- gitstore-0.58.3/ts/tests/tree.test.ts +230 -0
- gitstore-0.58.3/ts/tests/typecheck.test.ts +21 -0
- gitstore-0.58.3/ts/tests/validation.test.ts +69 -0
- gitstore-0.58.3/ts/tsconfig.json +18 -0
- gitstore-0.58.3/ts/vitest.config.ts +9 -0
- gitstore-0.58.3/uv.lock +371 -0
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
{
|
|
2
|
+
"permissions": {
|
|
3
|
+
"allow": [
|
|
4
|
+
"Bash(uv:*)",
|
|
5
|
+
"WebSearch",
|
|
6
|
+
"WebFetch(domain:gist.github.com)",
|
|
7
|
+
"WebFetch(domain:www.pygit2.org)",
|
|
8
|
+
"Bash(.venv/bin/pytest -v)",
|
|
9
|
+
"Bash(grep:*)",
|
|
10
|
+
"Bash(git -C /Users/halazar/Dropbox/development/gitstore log --oneline -5)",
|
|
11
|
+
"WebFetch(domain:github.com)",
|
|
12
|
+
"WebFetch(domain:dulwich.readthedocs.io)",
|
|
13
|
+
"WebFetch(domain:raw.githubusercontent.com)",
|
|
14
|
+
"WebFetch(domain:api.github.com)",
|
|
15
|
+
"WebFetch(domain:pypi.org)",
|
|
16
|
+
"WebFetch(domain:libgit2.org)",
|
|
17
|
+
"Bash(jedidb:*)",
|
|
18
|
+
"mcp__web-reader__webReader",
|
|
19
|
+
"Bash(wc:*)",
|
|
20
|
+
"Bash(python3:*)",
|
|
21
|
+
"WebFetch(domain:watchfiles.helpmanual.io)",
|
|
22
|
+
"Bash(git -C /Users/halazar/Dropbox/development/gitstore status)",
|
|
23
|
+
"Bash(git -C /Users/halazar/Dropbox/development/gitstore diff --stat)",
|
|
24
|
+
"Bash(git -C /Users/halazar/Dropbox/development/gitstore diff tests/conftest.py tests/test_cli.py)",
|
|
25
|
+
"Bash(git -C /Users/halazar/Dropbox/development/gitstore add tests/conftest.py tests/test_cli.py tests/test_cli_archive.py tests/test_cli_cp.py tests/test_cli_ls.py tests/test_cli_refs.py)",
|
|
26
|
+
"Bash(find:*)",
|
|
27
|
+
"Bash(git ls-tree:*)",
|
|
28
|
+
"Bash(for:*)",
|
|
29
|
+
"Bash(do echo \"=== $f ===\")",
|
|
30
|
+
"Bash(done)",
|
|
31
|
+
"Bash(npx vitest:*)",
|
|
32
|
+
"WebFetch(domain:docs.rs)",
|
|
33
|
+
"Bash(cargo check:*)",
|
|
34
|
+
"Bash(cargo test:*)",
|
|
35
|
+
"Bash(cargo run:*)",
|
|
36
|
+
"Bash(bash interop/run.sh:*)",
|
|
37
|
+
"Bash(/tmp/python_tests.txt << 'EOF'\ntest_apply.py:\n- TestWriteEntry\n- TestApplyWrites\n- TestApplyBareShorthand\n- TestApplyRemoves\n- TestApplyCombined\n- TestApplyCommitOptions\n- TestApplyErrors\n- TestApplyChangesReport\n\ntest_auto_create.py:\n- test_cp_auto_creates_repo\n- test_cp_auto_create_uses_branch\n- test_cp_no_create_prevents_auto_create\n- test_cp_repo_to_disk_no_auto_create\n- test_cp_dir_auto_creates_repo\n- test_cp_dir_no_create_prevents_auto_create\n- test_unzip_auto_creates_repo\n- test_unzip_no_create_prevents_auto_create\n- test_untar_auto_creates_repo\n- test_untar_no_create_prevents_auto_create\n- test_unarchive_auto_creates_repo\n- test_unarchive_no_create_prevents_auto_create\n- test_ls_errors_on_missing_repo\n- test_cat_errors_on_missing_repo\n- test_cp_existing_repo_not_recreated\n- test_cp_multi_source_disk_to_repo\n- test_cp_multi_source_repo_to_disk\n- test_cp_dir_contents_to_repo\n- test_cp_dir_contents_from_repo\n\ntest_batch.py:\n- TestBatch\n\ntest_copy.py:\n- TestCopyToRepoFile\n- TestCopyToRepoDir\n- TestCopyToRepoGlob\n- TestCopyFromRepoFile\n- TestCopyFromRepoDir\n- TestCopyFromRepoGlob\n- TestDryRun\n- TestMixed\n- TestIgnoreExisting\n- TestCopyEdgeCases\n- TestCopySymlinks\n- TestFollowSymlinksDeleteMode\n- TestDelete\n- TestIgnoreErrors\n- TestIgnoreErrorsDeleteAllFail\n- TestHashUnreadableIgnoreErrors\n- TestSourceDirSymlinkNoFollow\n- TestExpandDiskGlobCrossPlatform\n- TestOverlappingSources\n- TestCopyFromRepoDuplicateSources\n- TestContentsModeSymlinkedDir\n- TestChangeReportNone\n- TestCopyToRepoPivot\n- TestCopyFromRepoPivot\n- TestRemoveFromRepo\n- TestSymlinkParentEscape\n- TestDanglingSymlinkIgnoreExisting\n\ntest_exclude.py:\n- TestExcludeFilter\n- TestWalkWithExclude\n\ntest_fileobj.py:\n- TestReadableFile\n- TestWritableFile\n\ntest_fs_read.py:\n- TestRead\n- TestReadText\n- TestLs\n- TestWalk\n- TestExists\n- TestExport\n- TestFileType\n- TestSize\n- TestObjectHash\n- TestPathLikeSupport\n- TestProperties\n\ntest_fs_write.py:\n- TestWriteText\n- TestWrite\n- TestRemove\n- TestLog\n- TestStaleSnapshot\n- TestWriteFrom\n- TestSymlink\n- TestNoOpCommit\n- TestUndo\n- TestRedo\n- TestReflog\n- TestUndoRedoEdgeCases\n- TestBranchesSet\n- TestRetryWrite\n\ntest_glob.py:\n- TestIsDir\n- TestGlobStar\n- TestGlobQuestion\n- TestGlobNested\n- TestGlobEdgeCases\n- TestGlobDoublestar\n- TestGlobPivot\n- TestDiskGlobPivot\n\ntest_history.py:\n- TestParent\n- TestBack\n- TestLog\n- TestCommitMetadata\n\ntest_integration.py:\n- test_full_workflow\n\ntest_move.py:\n- TestMoveRename\n- TestMoveAtomicity\n- TestMoveDryRun\n- TestMoveErrors\n- TestMoveMessage\n\ntest_repo.py:\n- TestGitStoreOpen\n- TestRefDictBranches\n- TestRefDictTags\n- TestRefDictMapping\n- TestRefDictDefault\n\ntest_tree.py:\n- TestNormalizePath\n- TestRebuildTree\n- TestReadHelpers\n- TestWalkTree\n\nCLI/Mirror/Watch tests \\(SKIP - not in Rust API\\):\n- test_auto_create.py: CLI auto-create tests\n- test_backup_restore.py: mirror.py functionality\n- test_cli.py: CLI commands\n- test_cli_archive.py: archive CLI\n- test_cli_cp.py: cp CLI\n- test_cli_ls.py: ls CLI\n- test_cli_refs.py: refs CLI\n- test_cli_web.py: web server CLI\n- test_cmp_cli.py: cmp CLI\n- test_fileobj.py: file objects \\(special case\\)\n- test_head.py: head ref management \\(CLI\\)\n- test_message.py: commit message formatting\n- test_objsize.py: object sizer\n- test_ref_path.py: ref path validation\n- test_serve.py: web server\n- test_sync_api.py: backup/restore API\n- test_sync.py: sync API\n- test_watch.py: watch API\nEOF)",
|
|
38
|
+
"Bash(cargo build:*)",
|
|
39
|
+
"WebFetch(domain:alblue.bandlem.com)",
|
|
40
|
+
"WebFetch(domain:www.kenmuse.com)",
|
|
41
|
+
"WebFetch(domain:tylercipriani.com)",
|
|
42
|
+
"WebFetch(domain:www.initialcommit.com)",
|
|
43
|
+
"WebFetch(domain:lirantal.com)",
|
|
44
|
+
"WebFetch(domain:hirok.io)",
|
|
45
|
+
"WebFetch(domain:docs.npmjs.com)",
|
|
46
|
+
"WebFetch(domain:philna.sh)",
|
|
47
|
+
"WebFetch(domain:docs.stripe.com)",
|
|
48
|
+
"Bash(npm view:*)",
|
|
49
|
+
"WebFetch(domain:crates.io)",
|
|
50
|
+
"WebFetch(domain:deepwiki.com)",
|
|
51
|
+
"WebFetch(domain:rclone.org)",
|
|
52
|
+
"WebFetch(domain:sabre.io)",
|
|
53
|
+
"WebFetch(domain:tessl.io)",
|
|
54
|
+
"Bash(deno:*)",
|
|
55
|
+
"Bash(python:*)"
|
|
56
|
+
]
|
|
57
|
+
}
|
|
58
|
+
}
|