This commit is contained in:
eric.w@eee65cd362d995ced72640c7cfae388ae93a4234 2020-11-18 17:51:31 +00:00 committed by admin
parent 9c448c877b
commit f0c19c4c95

View file

@ -0,0 +1,15 @@
The git annex repo seems to be assuming anything under a hidden directory is non-large and thus is putting it in .git instead of .git/annex
I have even tried
mkdir ...git.annex.test...
cd ...git.annex.test...
git init
git annex init
cp ../...directory.with.binary.files.small.and.large.../ . -r
# git config annex.largefiles anything # (this seems to have no affect to the operation below)
git annex add .
...
... (non-large file; adding content to git repository)
...
this only affects content under a dot-directory, is this expected?