{"id":13393895,"url":"https://github.com/restic/restic","last_synced_at":"2025-05-12T17:46:00.508Z","repository":{"id":16453995,"uuid":"19205896","full_name":"restic/restic","owner":"restic","description":"Fast, secure, efficient backup program","archived":false,"fork":false,"pushed_at":"2025-05-01T23:05:08.000Z","size":69163,"stargazers_count":28476,"open_issues_count":451,"forks_count":1602,"subscribers_count":237,"default_branch":"master","last_synced_at":"2025-05-05T15:11:48.214Z","etag":null,"topics":["backup","dedupe","deduplication","go","restic","secure-by-default"],"latest_commit_sha":null,"homepage":"https://restic.net","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-2-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/restic.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":"GOVERNANCE.md","roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2014-04-27T14:07:58.000Z","updated_at":"2025-05-05T14:42:47.000Z","dependencies_parsed_at":"2023-01-16T21:01:06.238Z","dependency_job_id":"f27904a2-dc88-465d-96eb-8787ddd36f72","html_url":"https://github.com/restic/restic","commit_stats":{"total_commits":6096,"total_committers":421,"mean_commits":"14.479809976247031","dds":0.5213254593175853,"last_synced_commit":"660679c2f6c0aa3aaed0563927aef895274035b7"},"previous_names":["fd0/khepri"],"tags_count":50,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/restic%2Frestic","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/restic%2Frestic/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/restic%2Frestic/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/restic%2Frestic/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/restic","download_url":"https://codeload.github.com/restic/restic/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253789833,"owners_count":21964754,"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":["backup","dedupe","deduplication","go","restic","secure-by-default"],"created_at":"2024-07-30T17:01:02.063Z","updated_at":"2025-05-12T17:46:00.129Z","avatar_url":"https://github.com/restic.png","language":"Go","readme":"[![Documentation](https://readthedocs.org/projects/restic/badge/?version=latest)](https://restic.readthedocs.io/en/latest/?badge=latest)\n[![Build Status](https://github.com/restic/restic/workflows/test/badge.svg)](https://github.com/restic/restic/actions?query=workflow%3Atest)\n[![Go Report Card](https://goreportcard.com/badge/github.com/restic/restic)](https://goreportcard.com/report/github.com/restic/restic)\n\n# Introduction\n\nrestic is a backup program that is fast, efficient and secure. It supports the three major operating systems (Linux, macOS, Windows) and a few smaller ones (FreeBSD, OpenBSD).\n\nFor detailed usage and installation instructions check out the [documentation](https://restic.readthedocs.io/en/latest).\n\nYou can ask questions in our [Discourse forum](https://forum.restic.net).\n\n## Quick start\n\nOnce you've [installed](https://restic.readthedocs.io/en/latest/020_installation.html) restic, start\noff with creating a repository for your backups:\n\n    $ restic init --repo /tmp/backup\n    enter password for new backend:\n    enter password again:\n    created restic backend 085b3c76b9 at /tmp/backup\n    Please note that knowledge of your password is required to access the repository.\n    Losing your password means that your data is irrecoverably lost.\n\nand add some data:\n\n    $ restic --repo /tmp/backup backup ~/work\n    enter password for repository:\n    scan [/home/user/work]\n    scanned 764 directories, 1816 files in 0:00\n    [0:29] 100.00%  54.732 MiB/s  1.582 GiB / 1.582 GiB  2580 / 2580 items  0 errors  ETA 0:00\n    duration: 0:29, 54.47MiB/s\n    snapshot 40dc1520 saved\n\nNext you can either use `restic restore` to restore files or use `restic\nmount` to mount the repository via fuse and browse the files from previous\nsnapshots.\n\nFor more options check out the [online documentation](https://restic.readthedocs.io/en/latest/).\n\n# Backends\n\nSaving a backup on the same machine is nice but not a real backup strategy.\nTherefore, restic supports the following backends for storing backups natively:\n\n- [Local directory](https://restic.readthedocs.io/en/latest/030_preparing_a_new_repo.html#local)\n- [sftp server (via SSH)](https://restic.readthedocs.io/en/latest/030_preparing_a_new_repo.html#sftp)\n- [HTTP REST server](https://restic.readthedocs.io/en/latest/030_preparing_a_new_repo.html#rest-server) ([protocol](https://restic.readthedocs.io/en/latest/100_references.html#rest-backend), [rest-server](https://github.com/restic/rest-server))\n- [Amazon S3](https://restic.readthedocs.io/en/latest/030_preparing_a_new_repo.html#amazon-s3) (either from Amazon or using the [Minio](https://minio.io) server)\n- [OpenStack Swift](https://restic.readthedocs.io/en/latest/030_preparing_a_new_repo.html#openstack-swift)\n- [BackBlaze B2](https://restic.readthedocs.io/en/latest/030_preparing_a_new_repo.html#backblaze-b2)\n- [Microsoft Azure Blob Storage](https://restic.readthedocs.io/en/latest/030_preparing_a_new_repo.html#microsoft-azure-blob-storage)\n- [Google Cloud Storage](https://restic.readthedocs.io/en/latest/030_preparing_a_new_repo.html#google-cloud-storage)\n- And many other services via the [rclone](https://rclone.org) [Backend](https://restic.readthedocs.io/en/latest/030_preparing_a_new_repo.html#other-services-via-rclone)\n\n# Design Principles\n\nRestic is a program that does backups right and was designed with the\nfollowing principles in mind:\n\n-  **Easy**: Doing backups should be a frictionless process, otherwise\n   you might be tempted to skip it. Restic should be easy to configure\n   and use, so that, in the event of a data loss, you can just restore\n   it. Likewise, restoring data should not be complicated.\n\n-  **Fast**: Backing up your data with restic should only be limited by\n   your network or hard disk bandwidth so that you can backup your files\n   every day. Nobody does backups if it takes too much time. Restoring\n   backups should only transfer data that is needed for the files that\n   are to be restored, so that this process is also fast.\n\n-  **Verifiable**: Much more important than backup is restore, so restic\n   enables you to easily verify that all data can be restored.\n\n-  **Secure**: Restic uses cryptography to guarantee confidentiality and\n   integrity of your data. The location the backup data is stored is\n   assumed not to be a trusted environment (e.g. a shared space where\n   others like system administrators are able to access your backups).\n   Restic is built to secure your data against such attackers.\n\n-  **Efficient**: With the growth of data, additional snapshots should\n   only take the storage of the actual increment. Even more, duplicate\n   data should be de-duplicated before it is actually written to the\n   storage back end to save precious backup space.\n\n# Reproducible Builds\n\nThe binaries released with each restic version starting at 0.6.1 are\n[reproducible](https://reproducible-builds.org/), which means that you can\nreproduce a byte identical version from the source code for that\nrelease. Instructions on how to do that are contained in the\n[builder repository](https://github.com/restic/builder).\n\n## News\n\nYou can follow the restic project on Mastodon [@resticbackup](https://fosstodon.org/@restic) or subscribe to\nthe [project blog](https://restic.net/blog/).\n\n## License\n\nRestic is licensed under [BSD 2-Clause License](https://opensource.org/licenses/BSD-2-Clause). You can find the\ncomplete text in [`LICENSE`](LICENSE).\n\n## Sponsorship\n\nBackend integration tests for Google Cloud Storage and Microsoft Azure Blob\nStorage are sponsored by [AppsCode](https://appscode.com)!\n\n[![Sponsored by AppsCode](https://cdn.appscode.com/images/logo/appscode/ac-logo-color.png)](https://appscode.com)\n","funding_links":[],"categories":["Go","HarmonyOS","开源类库","Apps","Software Packages","Backups","Applications","go","Built On","\u003ca name=\"backup\"\u003e\u003c/a\u003ebackup","Go 程序设计","应用","CLI 项目","Uncategorized","Other Software","Programming Languages","Application Recommendation","软件包","Backup","Repositories","For Windows","Table of Contents","Go Tools","軟件包","Go 工具","File Transfer \u0026 Sync","File Sync \u0026 Backup","Sync and Backup Tools"],"sub_categories":["Windows Manager","文件/存储","Backup","Other Software","Data Backup and Recovery","Kafka","网络服务_其他","数据备份与恢复","Uncategorized","Go","☁️ Cloud storage","其他软件","其他软件库和软件包","其他軟件","Backup Software with Rclone Support"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frestic%2Frestic","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frestic%2Frestic","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frestic%2Frestic/lists"}