aboutsummaryrefslogtreecommitdiff
path: root/SETUP.md
diff options
context:
space:
mode:
Diffstat (limited to 'SETUP.md')
-rw-r--r--SETUP.md7
1 files changed, 3 insertions, 4 deletions
diff --git a/SETUP.md b/SETUP.md
index 7097c90..36b5400 100644
--- a/SETUP.md
+++ b/SETUP.md
@@ -37,15 +37,14 @@ git annex init
To use git-annex only for large files (git for smaller ones),
add e.g. the following to file `.gitattributes`:
-```gitconfig
-* annex.largefiles=((largerthan=100kb)and(not(mimetype=text/*)))
-*.svg annex.largefiles=nothing
+```shell
+git config annex.largefiles 'largerthan=100kb and not (mimetype=text/*)'
```
Finally, save all content:
```shell
-git annex add .
+git add .
git commit -m "Initial commit"
```