This commit is contained in:
https://www.google.com/accounts/o8/id?id=AItOawlgyVag95OnpvSzQofjyX0WjW__MOMKsl0 2014-01-08 22:50:43 +00:00 committed by admin
parent a17229a17e
commit 48bf3ec4f6

View file

@ -0,0 +1,9 @@
Please provide a command that basically performs something like:
git get --auto
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!