diff options
author | Joey Hess <joey@kitenet.net> | 2011-08-29 12:08:54 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-08-29 12:11:05 -0400 |
commit | 025e66e3d35d89fc3c3dd2c81e2f618941130a26 (patch) | |
tree | 4a4d3acb5166d278eb789fdaa6eeb9f6fd96bab2 /doc/backends.mdwn | |
parent | 2a76ad41673968793a479f79ed33ba83a0b10773 (diff) |
update to not overstate the danger or WORM
Diffstat (limited to 'doc/backends.mdwn')
-rw-r--r-- | doc/backends.mdwn | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/backends.mdwn b/doc/backends.mdwn index f2f1c5580..ebcdedc2a 100644 --- a/doc/backends.mdwn +++ b/doc/backends.mdwn @@ -6,11 +6,11 @@ Multiple pluggable key-value backends are supported, and a single repository can use different ones for different files. * `WORM` ("Write Once, Read Many") This assumes that any file with - the same basename, size, and modification time has the same content. So - files can be moved around, but should never be added to - or changed. This is the default, and the least expensive backend. + the same basename, size, and modification time has the same content. + This is the default, and the least expensive backend. * `SHA1` -- This uses a key based on a sha1 checksum. This allows - modifications of files to be tracked. Its need to generate checksums + verifying that the file content is right, and can avoid duplicates of + files with the same content. Its need to generate checksums can make it slower for large files. * `SHA512`, `SHA384`, `SHA256`, `SHA224` -- Like SHA1, but larger checksums. Mostly useful for the very paranoid, or anyone who is @@ -28,7 +28,7 @@ files, the `.gitattributes` file can be used. The `annex.backend` attribute can be set to the name of the backend to use for matching files. For example, to use the SHA1 backend for sound files, which tend to be -smallish and might be modified over time, you could set in +smallish and might be modified or copied over time, you could set in `.gitattributes`: *.mp3 annex.backend=SHA1 |