{"id":21658364,"url":"https://github.com/containerd/continuity","last_synced_at":"2025-07-17T21:30:55.114Z","repository":{"id":35078650,"uuid":"39231914","full_name":"containerd/continuity","owner":"containerd","description":"A transport-agnostic, filesystem metadata manifest system","archived":false,"fork":false,"pushed_at":"2024-10-28T12:13:04.000Z","size":5943,"stargazers_count":144,"open_issues_count":32,"forks_count":67,"subscribers_count":19,"default_branch":"main","last_synced_at":"2024-10-29T20:34:53.664Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://containerd.io","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/containerd.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":"AUTHORS","dei":null,"publiccode":null,"codemeta":null}},"created_at":"2015-07-17T02:54:36.000Z","updated_at":"2024-10-29T00:39:14.000Z","dependencies_parsed_at":"2023-10-12T17:44:23.105Z","dependency_job_id":"27b92d52-f4d2-40e6-8cfc-fec1fa806e09","html_url":"https://github.com/containerd/continuity","commit_stats":{"total_commits":279,"total_committers":46,"mean_commits":6.065217391304348,"dds":0.8351254480286738,"last_synced_commit":"44e2adf7e9cd87330f3ad656e7a006ef91ed8c1e"},"previous_names":["stevvooe/continuity"],"tags_count":10,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/containerd%2Fcontinuity","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/containerd%2Fcontinuity/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/containerd%2Fcontinuity/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/containerd%2Fcontinuity/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/containerd","download_url":"https://codeload.github.com/containerd/continuity/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":226304631,"owners_count":17603630,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-25T09:29:09.864Z","updated_at":"2024-11-25T09:29:15.397Z","avatar_url":"https://github.com/containerd.png","language":"Go","readme":"# continuity\n\n[![Go Reference](https://pkg.go.dev/badge/github.com/containerd/continuity.svg)](https://pkg.go.dev/github.com/containerd/continuity)\n[![Build Status](https://github.com/containerd/continuity/workflows/Continuity/badge.svg)](https://github.com/containerd/continuity/actions?query=workflow%3AContinuity+branch%3Amain)\n\nA transport-agnostic, filesystem metadata manifest system\n\nThis project is a staging area for experiments in providing transport agnostic\nmetadata storage.\n\nSee [opencontainers/runtime-spec#11](https://github.com/opencontainers/runtime-spec/issues/11)\nfor more details.\n\n## Manifest Format\n\nA continuity manifest encodes filesystem metadata in Protocol Buffers.\nRefer to [proto/manifest.proto](proto/manifest.proto) for more details.\n\n## Usage\n\nBuild:\n\n```console\n$ make\n```\n\nCreate a manifest (of this repo itself):\n\n```console\n$ ./bin/continuity build . \u003e /tmp/a.pb\n```\n\nDump a manifest:\n\n```console\n$ ./bin/continuity ls /tmp/a.pb\n...\n-rw-rw-r--      270 B   /.gitignore\n-rw-rw-r--      88 B    /.mailmap\n-rw-rw-r--      187 B   /.travis.yml\n-rw-rw-r--      359 B   /AUTHORS\n-rw-rw-r--      11 kB   /LICENSE\n-rw-rw-r--      1.5 kB  /Makefile\n...\n-rw-rw-r--      986 B   /testutil_test.go\ndrwxrwxr-x      0 B     /version\n-rw-rw-r--      478 B   /version/version.go\n```\n\nVerify a manifest:\n\n```console\n$ ./bin/continuity verify . /tmp/a.pb\n```\n\nBreak the directory and restore using the manifest:\n```console\n$ chmod 777 Makefile\n$ ./bin/continuity verify . /tmp/a.pb\n2017/06/23 08:00:34 error verifying manifest: resource \"/Makefile\" has incorrect mode: -rwxrwxrwx != -rw-rw-r--\n$ ./bin/continuity apply . /tmp/a.pb\n$ stat -c %a Makefile\n664\n$ ./bin/continuity verify . /tmp/a.pb\n```\n\n## Platforms\n\ncontinuity primarily targets Linux. Continuity may compile for and work on\nother operating systems, but those platforms are not tested.\n\n## Contribution Guide\n### Building Proto Package\n\nIf you change the proto file you will need to rebuild the generated Go with `go generate`.\n\n```console\n$ go generate ./proto\n```\n\n## Project details\n\ncontinuity is a containerd sub-project, licensed under the [Apache 2.0 license](./LICENSE).\nAs a containerd sub-project, you will find the:\n * [Project governance](https://github.com/containerd/project/blob/main/GOVERNANCE.md),\n * [Maintainers](https://github.com/containerd/project/blob/main/MAINTAINERS),\n * and [Contributing guidelines](https://github.com/containerd/project/blob/main/CONTRIBUTING.md)\n\ninformation in our [`containerd/project`](https://github.com/containerd/project) repository.\n","funding_links":[],"categories":["Go"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcontainerd%2Fcontinuity","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcontainerd%2Fcontinuity","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcontainerd%2Fcontinuity/lists"}