Hi
I have a laptop, server and a regular PC. Laptop and PC are using same "backup" repo on server. Thay all get notified via ssh. My goal is to have synchronization and backup in one remote repo. When I wan to list all files on all repos i do:
git-annex whereis -A (some files do fail. Don't know why)
But that displays hashes. Not file names. How can to list file names on all repos instead of hashes ?
Hi
-A
operates on all the files even on files which are not accessible from your current working directory. If you omit the-A
then filenames will be printed.So you only want to see whereis for files which are present on certain annexes? You can use
git annex whereis --in e64553d0-779a-4c79-939a-d5b7f3e56a57
orgit annex whereis --in origin
(modify the repo names).Have a look on QUERY COMMANDS.
git-annex whereis --not --in here
Does not display anything.
git-annex whereis --not --in here -A
Displays files on remote only. Every file has an additional message (0 copies) failed. This displays hash names. How to display file names ? I am 100% sure that my remote repo has some files that are not present on laptop or PC.