-
Notifications
You must be signed in to change notification settings - Fork 0
/
menu.yaml
50 lines (50 loc) · 2.38 KB
/
menu.yaml
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
---
- cmd: ["help", "--help", "-h"]
text: "Show help message about supported commands."
- cmd: ["init", "init DIRECTORY_PATH"]
text: "Create configuration files in current directory or in DIRECTORY_PATH."
- cmd: sources
children:
- cmd: "add DIRECTORY REPO BRANCH"
text: "Add git submodule into DIRECTORY from REPO and track BRANCH by default."
- cmd: "delete DIRECTORY"
text: "Delete git submodule from DIRECTORY."
- cmd: ["update", "update DIRECTORY ..."]
text: >
Update git submodule from upstream in DIRECTORY or in all git submodules if DIRECTORY
is not specified. You may pass one or more directory paths (DIRECTORY ...) to update
their contents.
- cmd: ["version", "--version", "-v"]
text: "Show program version"
- cmd: works
children:
- cmd: ["covered", "covered DIRECTORY ..."]
text: >
List files of sources which have been used for published works. Pass one or more directory
paths (DIRECTORY ...) to show files only in these directories.
- cmd: ["ignored", "ignored DIRECTORY ..."]
text: >
List ignored files. Pass one or more directory paths (DIRECTORY ...) to show files only in
these directories.
- cmd: ["outdated", "outdated DIRECTORY ..."]
text: >
List documents which may contain outdated information. Pass one or more directory paths
(DIRECTORY ...) to show files only in these directories.
- cmd: ["publish DOCUMENT", "publish DOCUMENT FILE_PATH ..."]
text:
- >
Save record about work (DOCUMENT) and pass list of file paths of sources
(FILE_PATH ...) which relate to this work. You should prepend minus sign to file path
to exclude it from list of related sources. Examples:
- >
works publish _/docker/compose.md docs.docker.com/content/manuals/compose/**/*.md
- >
works publish _/docker/compose.md -docs.docker.com/**/*.md
- cmd: ["uncovered", "uncovered DIRECTORY ..."]
text: >
List files of sources which have NOT been used for published works. Pass one or more
directory paths (DIRECTORY ...) to show files only in these directories.
- cmd: ["unknown", "unknown DIRECTORY ..."]
text: >
List files of sources which may be used for works or ignored. Pass one or more directory
paths (DIRECTORY ...) to show files only in these directories.