Added a comment

This commit is contained in:
Atemu 2021-05-22 10:20:35 +00:00 committed by admin
parent 0b89436b47
commit 21fba1cdb8

View file

@ -0,0 +1,32 @@
[[!comment format=mdwn
username="Atemu"
avatar="http://cdn.libravatar.org/avatar/d1f0f4275931c552403f4c6707bead7a"
subject="comment 5"
date="2021-05-22T10:20:35Z"
content="""
I found the culprit: largefiles.
I use
```
* annex.largefiles=mimeencoding=binary
```
in my documents repo because I need to efficiently store lots of text and diff, merge etc. properly.
Here are the revised repro steps:
```
git init test
cd test
git annex init
git config annex.delayadd 5
echo '* annex.largefiles=mimeencoding=binary' > .gitattributes
git add .
git commit -m \"gitattributes: largefiles\"
git annex assistant
echo `date` > test
git log --patch
```
The date of the commit should be the date in the file +5s.
"""]]