Merge branch 'master' of ssh://git-annex.branchable.com

This commit is contained in:
Joey Hess 2021-06-14 14:34:35 -04:00
commit fa6e8fc660
No known key found for this signature in database
GPG key ID: DB12DB0FF05F8F38
2 changed files with 17 additions and 0 deletions

View file

@ -0,0 +1,10 @@
[[!comment format=mdwn
username="yarikoptic"
avatar="http://cdn.libravatar.org/avatar/f11e9c84cb18d26a1748c33b48c924b4"
subject="comment 30"
date="2021-06-14T17:36:16Z"
content="""
> The same needs to also hold true for unlocked files, and so it has to check if foo is an unlocked pointer to K and populate the file with the content.
but that should only needs to be done iff K became present/known whenever it was not present before. If K is already known (e.g. was just added for another file, or may be was added in previous \"commit\") no such checks are needed since those files could be expected to already be populated. Right?
"""]]

View file

@ -0,0 +1,7 @@
Ive decided to get my head wrapped around setting up `annex.largefiles` and stop manually deciding to `git add` or `git annex add` files as I go. I fumbled a bit, unsure if I had configured things correctly as it appeared that `git add` was still adding my large files into git history. I forgot that `git add` is configured to add annexed files unlocked and so the symlink I was expecting to see wasn't there. `git annex list` and `git annex find` helped me to see which files where staged to be committed into annex storage.
What I would like to be able to do is to more easily list files which are not present in annex storage and are tracked into git storage. I have had a play with `git annex find` and the matching options however I have been unable to display a list of files that I have added as small files. Is there a way to achieve this?
What I think would be ideal is for `git annex list` to show this information or another command which can print a tree with files in either of the two storage modes.
Thanks for any help!