summaryrefslogtreecommitdiff
path: root/doc/todo
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2014-01-19 17:56:24 -0400
committerGravatar Joey Hess <joey@kitenet.net>2014-01-19 17:56:24 -0400
commit81b2f9968a9e2c792b5081bf58ec6d68ca6e1624 (patch)
tree2de247306b4d595f324b5bded1339da35048b121 /doc/todo
parent6ddc6c944db103b75e007023b85137ba705179c3 (diff)
followups and closures
Diffstat (limited to 'doc/todo')
-rw-r--r--doc/todo/A_really_simple_way_to_pair_devices_like_bittorent_sync.mdwn2
-rw-r--r--doc/todo/Provide_a___34__git_annex_satisfy__95__num__95__copies__34___command.mdwn9
-rw-r--r--doc/todo/__96__git_annex_sync_--auto__96___or___96__git_annex_auto__96___--_synchronize_symlinks__44___tracking_info__44___and_actual_data.mdwn5
-rw-r--r--doc/todo/git_annex_get___60__file__62___should_verify_file_hash.mdwn2
-rw-r--r--doc/todo/wishlist:_git_annex_put_--_same_as_get__44___but_for_defaults.mdwn3
5 files changed, 20 insertions, 1 deletions
diff --git a/doc/todo/A_really_simple_way_to_pair_devices_like_bittorent_sync.mdwn b/doc/todo/A_really_simple_way_to_pair_devices_like_bittorent_sync.mdwn
index 93ccc083d..d3e20b6db 100644
--- a/doc/todo/A_really_simple_way_to_pair_devices_like_bittorent_sync.mdwn
+++ b/doc/todo/A_really_simple_way_to_pair_devices_like_bittorent_sync.mdwn
@@ -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]]
diff --git a/doc/todo/Provide_a___34__git_annex_satisfy__95__num__95__copies__34___command.mdwn b/doc/todo/Provide_a___34__git_annex_satisfy__95__num__95__copies__34___command.mdwn
index 20046785a..877e9fdbf 100644
--- a/doc/todo/Provide_a___34__git_annex_satisfy__95__num__95__copies__34___command.mdwn
+++ b/doc/todo/Provide_a___34__git_annex_satisfy__95__num__95__copies__34___command.mdwn
@@ -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]]
diff --git a/doc/todo/__96__git_annex_sync_--auto__96___or___96__git_annex_auto__96___--_synchronize_symlinks__44___tracking_info__44___and_actual_data.mdwn b/doc/todo/__96__git_annex_sync_--auto__96___or___96__git_annex_auto__96___--_synchronize_symlinks__44___tracking_info__44___and_actual_data.mdwn
index d48b4426f..ae0894955 100644
--- a/doc/todo/__96__git_annex_sync_--auto__96___or___96__git_annex_auto__96___--_synchronize_symlinks__44___tracking_info__44___and_actual_data.mdwn
+++ b/doc/todo/__96__git_annex_sync_--auto__96___or___96__git_annex_auto__96___--_synchronize_symlinks__44___tracking_info__44___and_actual_data.mdwn
@@ -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]]
diff --git a/doc/todo/git_annex_get___60__file__62___should_verify_file_hash.mdwn b/doc/todo/git_annex_get___60__file__62___should_verify_file_hash.mdwn
index f680729ac..fd93554ec 100644
--- a/doc/todo/git_annex_get___60__file__62___should_verify_file_hash.mdwn
+++ b/doc/todo/git_annex_get___60__file__62___should_verify_file_hash.mdwn
@@ -30,3 +30,5 @@ M.
# End of transcript or log.
"""]]
+
+> [[duplicate|done]] of [[checksum_verification_on_transfer]] --[[Joey]]
diff --git a/doc/todo/wishlist:_git_annex_put_--_same_as_get__44___but_for_defaults.mdwn b/doc/todo/wishlist:_git_annex_put_--_same_as_get__44___but_for_defaults.mdwn
index 9cd56749e..e1dc89a96 100644
--- a/doc/todo/wishlist:_git_annex_put_--_same_as_get__44___but_for_defaults.mdwn
+++ b/doc/todo/wishlist:_git_annex_put_--_same_as_get__44___but_for_defaults.mdwn
@@ -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]]