Skip to content

Commit 88384af

Browse files
committed
DOC: Fix typos
1 parent f4d3a71 commit 88384af

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

.github/scripts/aspell-ignorewords.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,3 +89,13 @@ rclone
8989
typeof
9090
chmod
9191
gitignore
92+
coreutils
93+
differencing
94+
distros
95+
fi
96+
gc'd
97+
luckyBackup
98+
mybabackup
99+
reencrypt
100+
Reencrypt
101+
txt

README.full.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ you find widely-applicable and useful.
299299
Git saves whole file snapshots and doesn't do any in-file or within-file
300300
or across-file deduplication, so it's not well-suited to automatic continual backing up
301301
of databases (i.e. large binaries) that change often,
302-
unless both repos are also regularly squashed, pruned and gc'd.
302+
unless both repos are also regularly squashed, pruned and <abbr title="garbage collected">gc'd</abbr>.
303303

304304
However, while git repositories bloat when commiting such large binary and media files,
305305
**_myba_ only ever uses sparse-checkout**, keeping overhead disk space use to a minimum.
@@ -339,8 +339,8 @@ one could e.g. do:
339339
#!/bin/sh
340340
wt="$GIT_WORK_TREE"
341341
if git diff --cached --name-only | grep -q '^Music/'; then
342-
ls -lR "$wt/path_of_interest" > "$wt/mylist.txt"
343-
git add "$wt/mylist.txt" # Will be committed
342+
ls -l -R "$wt/path_of_interest" > "$wt/my_list.txt"
343+
git add "$wt/my_list.txt" # Will be committed
344344
fi
345345
```
346346

0 commit comments

Comments
 (0)