From 361740a112645460c0111bd2794e48c08b0d54c4 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Fri, 26 Oct 2018 13:03:18 -0400 Subject: [PATCH] close bug report, open todo item --- ...upgraded_from_direct_mode_act_strangely.mdwn | 2 ++ ..._4_17838fe16ad66af62ac809829d8ede99._comment | 17 +++++++++++++++++ doc/todo/smudge.mdwn | 1 - doc/todo/unify_adjust_with_view.mdwn | 7 +++++++ 4 files changed, 26 insertions(+), 1 deletion(-) create mode 100644 doc/bugs/Metadata_views_in_v6_repo_upgraded_from_direct_mode_act_strangely/comment_4_17838fe16ad66af62ac809829d8ede99._comment create mode 100644 doc/todo/unify_adjust_with_view.mdwn diff --git a/doc/bugs/Metadata_views_in_v6_repo_upgraded_from_direct_mode_act_strangely.mdwn b/doc/bugs/Metadata_views_in_v6_repo_upgraded_from_direct_mode_act_strangely.mdwn index 015f2c2ed6..cae951e5ba 100644 --- a/doc/bugs/Metadata_views_in_v6_repo_upgraded_from_direct_mode_act_strangely.mdwn +++ b/doc/bugs/Metadata_views_in_v6_repo_upgraded_from_direct_mode_act_strangely.mdwn @@ -77,3 +77,5 @@ file_%subdir% ### Have you had any luck using git-annex before? (Sometimes we get tired of reading bug reports all day and a lil' positive end note does wonders) Yep! I already use it to move files between my laptop's HDD and SSD, and to copy files between my many SD cards. I was trying this to see if I could not have to scroll as far on my 3D printer's menu. + +> [[done]] see comments --[[Joey]] diff --git a/doc/bugs/Metadata_views_in_v6_repo_upgraded_from_direct_mode_act_strangely/comment_4_17838fe16ad66af62ac809829d8ede99._comment b/doc/bugs/Metadata_views_in_v6_repo_upgraded_from_direct_mode_act_strangely/comment_4_17838fe16ad66af62ac809829d8ede99._comment new file mode 100644 index 0000000000..b1e15fec6a --- /dev/null +++ b/doc/bugs/Metadata_views_in_v6_repo_upgraded_from_direct_mode_act_strangely/comment_4_17838fe16ad66af62ac809829d8ede99._comment @@ -0,0 +1,17 @@ +[[!comment format=mdwn + username="joey" + subject="""comment 4""" + date="2018-10-26T16:53:47Z" + content=""" +`git annex adjust --hide-missing` is now available to do what you want +re hiding missing files. + +`git annex view` doesn't currently unlock files in a v6 repo, so it's not +usable on a crippled filesystem. That's why the cat in the transcript above +shows the symlink content which git writes to a regular file when in a +crippled filesystem. + +I would like to eventually unify adjust with view, so `git annex adjust +--unlock` can be used with a view, which would support that. +See [[todo/unify_adjust_with_view]]. +"""]] diff --git a/doc/todo/smudge.mdwn b/doc/todo/smudge.mdwn index 8a2df0cd66..81d3b779d6 100644 --- a/doc/todo/smudge.mdwn +++ b/doc/todo/smudge.mdwn @@ -8,7 +8,6 @@ git-annex should use smudge/clean filters. v7 mode - - - - - ### long term todos diff --git a/doc/todo/unify_adjust_with_view.mdwn b/doc/todo/unify_adjust_with_view.mdwn new file mode 100644 index 0000000000..6129a08b3f --- /dev/null +++ b/doc/todo/unify_adjust_with_view.mdwn @@ -0,0 +1,7 @@ +`git annex adjust` and `git annex view` (et all) both derive a branch from +the main branch and enter it. They have different capabilies. It would be +useful to be able to compose them. For example, to enter a view based on +metadata that also has all files unlocked. + +There's also probably a fair amount of overlap in their implementations. +--[[Joey]]