3 subject="""comment 3"""
4 date="2017-09-26T19:16:29Z"
6 Hmm, if the file was not already in the index, that could be taken to
7 indicate it was deleted/moved and replaced, rather than being modified,
8 and so don't copy the metadata.
10 But that would make these two sequences have different behavior:
12 git rm file; echo foo > file; git annex add file
14 echo foo > file; git annex add file
16 As well as these two sequences:
18 git mv file other; echo foo > file; git annex add file
20 cp file other; echo foo > file; git annex add file other