-
Notifications
You must be signed in to change notification settings - Fork 0
/
nexus_examples.txt
32 lines (28 loc) · 1.01 KB
/
nexus_examples.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
example:
master repository contains
/dir/
/dir/a.txt
/dir/subdir/
/dir/subdir/archive.zip
|
-> a.txt
-> dir/
-> dir/b.txt
shadow repository:
/dir/ -> master:/dir/
/dir/a.txt -> master:/dir/a.txt
/dir/subdir/ -> master:/dir/subdir/
/dir/subdir/archive.zip -> master:/dir/subdir/archive.zip
/dir/subdir/archive.zip/ -> collection
|
-> a.txt
-> dir/
/dir/subdir/archive.zip/a.txt -> extracted content of file a.txt from /dir/subdir/archive.zip
/dir/subdir/archive.zip/dir -> collection
|
-> b.txt
/dir/subdir/archive.zip/dir/b.txt -> extracted content of file dir/b.txt from /dir/subdir/archive.zip
/dir/subdir/archive.zip/x.txt -> NOT FOUND
/dir/subdir/archive.zip/xDir -> NOT FOUND
/x.txt -> NOT FOUND
/xDir -> NOT FOUND