This commit is contained in:
ggres 2018-08-01 18:57:54 +00:00 committed by admin
parent 2ca412754a
commit 5089f0497f

View file

@ -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
- ...