summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/manifest-format.md13
1 files changed, 11 insertions, 2 deletions
diff --git a/docs/manifest-format.md b/docs/manifest-format.md
index d1a11cc9..42e1ab18 100644
--- a/docs/manifest-format.md
+++ b/docs/manifest-format.md
@@ -453,10 +453,14 @@ Intermediate paths must not be symlinks either.
453 453
454Parent directories of "dest" will be automatically created if missing. 454Parent directories of "dest" will be automatically created if missing.
455 455
456The files are copied in the order they are specified in the manifests.
457If multiple elements specify the same source and destination, they will
458only be applied as one, based on the first occurence. Files are copied
459before any links specified via linkfile elements are created.
460
456### Element linkfile 461### Element linkfile
457 462
458It's just like copyfile and runs at the same time as copyfile but 463It's just like copyfile, but instead of copying it creates a symlink.
459instead of copying it creates a symlink.
460 464
461The symlink is created at "dest" (relative to the top of the tree) and 465The symlink is created at "dest" (relative to the top of the tree) and
462points to the path specified by "src" which is a path in the project. 466points to the path specified by "src" which is a path in the project.
@@ -466,6 +470,11 @@ Parent directories of "dest" will be automatically created if missing.
466The symlink target may be a file or directory, but it may not point outside 470The symlink target may be a file or directory, but it may not point outside
467of the repo client. 471of the repo client.
468 472
473The links are created in the order they are specified in the manifests.
474If multiple elements specify the same source and destination, they will
475only be applied as one, based on the first occurence. Links are created
476after any files specified via copyfile elements are copied.
477
469### Element remove-project 478### Element remove-project
470 479
471Deletes a project from the internal manifest table, possibly 480Deletes a project from the internal manifest table, possibly