소스 검색

fix docs: --compression lz4 is the default now, fixes #3034

Thomas Waldmann 7 년 전
부모
커밋
c88528512f
1개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 4 4
      docs/usage/create.rst

+ 4 - 4
docs/usage/create.rst

@@ -41,11 +41,11 @@ Examples
     # Backup a raw device (must not be active/in use/mounted at that time)
     $ dd if=/dev/sdx bs=10M | borg create /path/to/repo::my-sdx -
 
-    # No compression (default)
-    $ borg create /path/to/repo::arch ~
+    # No compression
+    $ borg create --compression none /path/to/repo::arch ~
 
-    # Super fast, low compression
-    $ borg create --compression lz4 /path/to/repo::arch ~
+    # Super fast, low compression (default)
+    $ borg create /path/to/repo::arch ~
 
     # Less fast, higher compression (N = 0..9)
     $ borg create --compression zlib,N /path/to/repo::arch ~