From 5089f0497f92b8fa22761fd16365f53c95117fde Mon Sep 17 00:00:00 2001 From: ggres Date: Wed, 1 Aug 2018 18:57:54 +0000 Subject: [PATCH] --- doc/forum/Combine_tags_in_view_branches.mdwn | 27 ++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 doc/forum/Combine_tags_in_view_branches.mdwn diff --git a/doc/forum/Combine_tags_in_view_branches.mdwn b/doc/forum/Combine_tags_in_view_branches.mdwn new file mode 100644 index 0000000000..5de355bd63 --- /dev/null +++ b/doc/forum/Combine_tags_in_view_branches.mdwn @@ -0,0 +1,27 @@ +Is there a way to 'combine' tags in view branches? For example: + +``` +git annex view photos videos +``` + +produces a directory tree like so: + +``` ++ photos + - a.jpg + - b.jpg + - ... ++ videos + - a.mp4 + - b.mp4 + - ... +``` + +Is there a way to achieve the following output?: + +``` +- a.jpg +- b.jpg +- a.mp4 +- b.mp4 +- ...