2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-08 03:50:49 +00:00
Go to file
Alexander Neumann 1160d03279 Always use NetCologne SourceForge mirror
The one automatically selected by the SourceForge CDN fails currently:

    appveyor DownloadFile http://downloads.sourceforge.net/project/gnuwin32/tar/1.13-1/tar-1.13-1-bin.zip -FileName tar.zip
    Error downloading file: Unable to connect to the remote server Command exited with code 2
2016-02-05 21:13:14 +01:00
backend Remove backend.ReadCloser 2016-01-27 22:35:18 +01:00
checker checker: Validate pack checksums before unpacking 2016-02-04 22:55:39 +01:00
cmd/restic
crypto
debug
doc
filter
fuse
Godeps Update minio-go 2016-01-28 22:38:29 +01:00
location
pack Remove last ocurrence of Create() 2016-01-24 19:30:14 +01:00
pipe
repository Move testing for known blobs to Archiver 2016-02-01 23:50:56 +01:00
test
testdata
.gitignore
.travis.yml Update Travis Go version 2016-01-28 22:28:17 +01:00
appveyor.yml Always use NetCologne SourceForge mirror 2016-02-05 21:13:14 +01:00
archiver_duplication_test.go Move test for #405: Test Archiver instead of Repo 2016-02-01 23:50:41 +01:00
archiver_int_test.go
archiver_test.go
archiver.go Move testing for known blobs to Archiver 2016-02-01 23:50:56 +01:00
build.go
cache_test.go
cache.go
CONTRIBUTING.md
doc.go
Dockerfile CI: download minio for the correct os and arch 2016-01-26 23:52:39 +01:00
LICENSE
lock_test.go
lock_unix.go
lock_windows.go
lock.go
Makefile
node_darwin.go
node_freebsd.go
node_linux.go
node_openbsd.go
node_test.go
node_unix.go
node_windows.go
node.go
progress.go
README.md Add link to record of talk at C4 Cologne 2016-02-04 19:56:41 +01:00
restorer.go
run_integration_tests.go CI: download minio for the correct os and arch 2016-01-26 23:52:39 +01:00
snapshot_test.go
snapshot.go
tree_test.go
tree.go
Vagrantfile
VERSION
walk_test.go
walk.go

Build Status Build status Report Card Coverage Status

Restic Design Principles

Restic is a program that does backups right and was designed with the following principles in mind:

  • Easy: Doing backups should be a frictionless process, otherwise you might be tempted to skip it. Restic should be easy to configure and use, so that, in the event of a data loss, you can just restore it. Likewise, restoring data should not be complicated.

  • Fast: Backing up your data with restic should only be limited by your network or hard disk bandwidth so that you can backup your files every day. Nobody does backups if it takes too much time. Restoring backups should only transfer data that is needed for the files that are to be restored, so that this process is also fast.

  • Verifiable: Much more important than backup is restore, so restic enables you to easily verify that all data can be restored.

  • Secure: Restic uses cryptography to guarantee confidentiality and integrity of your data. The location the backup data is stored is assumed not to be a trusted environment (e.g. a shared space where others like system administrators are able to access your backups). Restic is built to secure your data against such attackers.

  • Efficient: With the growth of data, additional snapshots should only take the storage of the actual increment. Even more, duplicate data should be de-duplicated before it is actually written to the storage back end to save precious backup space.

Build restic

Install Go/Golang (at least version 1.3), then run go run build.go, afterwards you'll find the binary in the current directory:

$ go run build.go

$ ./restic --help
Usage:
  restic [OPTIONS] <command>
[...]

More documentation can be found on the website, especially in the user manual.

Compatibility

Backward compatibility for backups is important so that our users are always able to restore saved data. Therefore restic follows Semantic Versioning to clearly define which versions are compatible. The repository and data structures contained therein are considered the "Public API" in the sense of Semantic Versioning. This goes for all released versions of restic, this may not be the case for the master branch.

We guarantee backward compatibility of all repositories within one major version; as long as we do not increment the major version, data can be read and restored. We strive to be fully backward compatible to all prior versions.

Contribute and Documentation

Contributions are welcome! More information can be found in CONTRIBUTING.md. A document describing the design of restic and the data structures stored on the back end is contained in doc/Design.md. The development environment is described in CONTRIBUTING.md.

Contact

If you discover a bug, find something surprising or if you would like to discuss or ask something, please open a github issue. If you would like to chat about restic, there is also the IRC channel #restic on irc.freenode.net.

Important: If you discover something that you believe to be a possible critical security problem, please do not open a GitHub issue but send an email directly to alexander@bumpern.de. If possible, please encrypt your email using the following PGP key (0x91A6868BD3F7A907):

pub   4096R/91A6868BD3F7A907 2014-11-01
      Key fingerprint = CF8F 18F2 8445 7597 3F79  D4E1 91A6 868B D3F7 A907
      uid                          Alexander Neumann <alexander@bumpern.de>
      uid                          Alexander Neumann <alexander@debian.org>
      sub   4096R/D5FC2ACF4043FDF1 2014-11-01

Talks

The following talks will be or have been given about restic:

License

Restic is licensed under "BSD 2-Clause License". You can find the complete text in the file LICENSE.