promote comment to todo

This commit is contained in:
Joey Hess 2024-04-30 15:13:59 -04:00
parent da712198d8
commit 1f37d0b00d
No known key found for this signature in database
GPG key ID: DB12DB0FF05F8F38
2 changed files with 40 additions and 0 deletions

View file

@ -0,0 +1,11 @@
[[!comment format=mdwn
username="joey"
subject="""Re: How to find last available version of a file?"""
date="2024-04-30T18:52:12Z"
content="""
There's not currently a way to do that without some scripting to get
the keys, and then `git-annex whereis --key`.
I think this idea is worth doing something about, so I made this todo:
[[todo/wherewas]].
"""]]

29
doc/todo/wherewas.mdwn Normal file
View file

@ -0,0 +1,29 @@
Repo that contains the latest/current version of a file is not accessible.
Can git annex whereis find the last available version of a file in other
repos (or a specific repo)?
I can looping through commit log and running whereis for each commit until
an earlier version of a file is found, but perhaps there is a better way to
do it with a single command?
> Not currently, but I think it would be a useful command to have available
> without scripting.
>
> So the use case seems to be that the most recent version of a file is not
> accessible currently, but you want to access some version of the file,
> and will settle for an older version.
>
> One interface could be:
>
> git-annex findversion thefile --in=foo
>
> Which would look at past versions of thefile that are present in remote
> foo, and output something like "master@{10}", or just a bare
> git commit sha. Which you can `git checkout`
> and then `git-annex get thefile --from=foo` will work to access the
> content.
>
> One problem with this interface is it would need to be limited to a
> single file, because there may be no commit that has the latest
> versions of several files that are all in the specified remote.
> --[[Joey]]