followups and closures

This commit is contained in:
Joey Hess 2014-01-19 17:56:24 -04:00
parent b6ba0bd556
commit 7e6e018408
5 changed files with 20 additions and 1 deletions

View file

@ -5,3 +5,5 @@ First I thought with xmpp I can sync files without ssh/rsync or other remote acc
It would be just great to have some means to sync files without cloud just the two device. Without the ssh / rsync jut share some secret and the devices do the rest. :-o
Anyway thanks for hearing. I'm looking forward to know more about git-annex. Thank you for that sw. =-<>-=
> [[design/assistant/telehash]] --[[Joey]]

View file

@ -7,3 +7,12 @@ for i in `git remote`; do git copy -to $i --auto; done
The use case is this:
I have a very large repo (300.000 files) in three places. Now I want the fastest possible way to ensure, that every file exists in annex.numcopies. This should scan every file one time and then get it or copy it to other repos as needed. Right now, I make one "git annex get --auto" in every repo, which is is a waste of time, since most of the files never change anyway!
> The closest we have to this is the (new) `git annex sync --content`.
> It does effectivly just what the shown for loop does.
>
> But, that actually satisfies preferred content settings, which default
> to preferring every repo have a copy, and even if configured will
> typically be more than numcopies.
>
> Numcopies is more of a minimum lower bound (though not a hard bound).
> --[[Joey]]

View file

@ -1,3 +1,6 @@
As per DebConf13: Introduce a one-shot command to synchronize everything, including data, with the other remotes.
As per DebConf13: Introduce a one-shot command to synchronize everything,
including data, with the other remotes.
Especially useful for the debconf annex.
> [[done]]; `git annex sync --content` --[[Joey]]

View file

@ -30,3 +30,5 @@ M.
# End of transcript or log.
"""]]
> [[duplicate|done]] of [[checksum_verification_on_transfer]] --[[Joey]]

View file

@ -15,3 +15,6 @@ My main reason for not wanting to use copy --to is that I need to specify the re
mr push
to do the right thing all by itself.
> I feel that the new `git annex sync --content` is pretty close to what's
> requested here. [[done]] --[[Joey]]