diff options
Diffstat (limited to 'SETUP.md')
-rw-r--r-- | SETUP.md | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -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" ``` |