|
15 | 15 | <script async src="https://www.googletagmanager.com/gtag/js?id=G-JT9W3RXCJD"></script>
|
16 | 16 | <script>window.dataLayer=window.dataLayer||[];function gtag(){dataLayer.push(arguments);}gtag("js",new Date());gtag("config","G-JT9W3RXCJD");</script>
|
17 | 17 | <style>
|
18 |
| -html{background:DarkOliveGreen; line-height: 1.4em} |
19 |
| -article {background:rgba(255, 255, 255, .7); padding:2em; margin:auto; width:60%; min-width:700px;} |
20 |
| -pre {background:rgba(255, 255, 255, .6); padding: 1em;} |
| 18 | +html{background:DarkOliveGreen; line-height: 1.4em; font-family:} |
| 19 | +article {background:#fffb; padding:2em; margin:auto; width:60%; min-width:700px;} |
| 20 | +pre {background:#fff8; padding: 1em;} |
| 21 | +code:not(pre code) {font-weight: bold; background:#fff8; padding: .2em .5em; white-space: nowrap;} |
21 | 22 | h1,h2,h3,h4 {margin-top: 2em}
|
22 |
| -code:not(pre code) {font-weight: bold} |
| 23 | +a {color:royalblue} |
23 | 24 | </style>
|
24 | 25 | </head>
|
25 | 26 | <body><main><article>
|
@@ -72,10 +73,10 @@ <h1 id="myba-git-based-backup-utility-with-encryption"><img src="icon.svg" width
|
72 | 73 | whereas one might have a want for that, otherwise almost what's the point? 😶</p>
|
73 | 74 | <h2 id="features">Features</h2>
|
74 | 75 | <ul>
|
75 |
| -<li>Version-controlled (git-based) backup of plaintext documents as well as large binary files.</li> |
| 76 | +<li><strong>Version-controlled (git-based) backup</strong> of plaintext documents as well as large binary files.</li> |
76 | 77 | <li>Automatic <strong>text compression</strong> for reduced space use.</li>
|
77 | 78 | <li>Currently using <strong><em>strong</em> AES256 encryption</strong> of files and paths, so far quantum-safe.</li>
|
78 |
| -<li>Git-based workflow: add, stage, commit, push, clone, pull, checkout.</li> |
| 79 | +<li>Familiar git workflow: add, stage, commit, push, clone, pull, checkout.</li> |
79 | 80 | <li><strong>Selective checkout</strong> of backup files, efficient size-on-disk overhead.</li>
|
80 | 81 | <li><strong>Sync to multiple clouds</strong> for nearly free by (ab)using popular git hosts.</li>
|
81 | 82 | <li><strong>Or sync anywhere simply</strong> by cloning or checking-out a directory ...</li>
|
@@ -121,7 +122,7 @@ <h2 id="installation">Installation</h2>
|
121 | 122 | <pre><code class="language-sh"># Install dependencies
|
122 | 123 | sudo apt install gzip git git-lfs openssl gpg
|
123 | 124 |
|
124 |
| -# Make available somewhere in path |
| 125 | +# Download and make available somewhere in path |
125 | 126 | curl -L https://bit.ly/myba-backup > ~/.local/bin/myba
|
126 | 127 | export PATH="$HOME/.local/bin:$PATH"
|
127 | 128 |
|
|
0 commit comments