-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
21 changed files
with
164 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
## mbt apply local | ||
|
||
Applies the manifest of local directory state over a template | ||
|
||
### Synopsis | ||
|
||
|
||
Applies the manifest of local directory state over a template | ||
|
||
Calculated manifest and the template is based on the content of local directory. | ||
This command is useful for testing pending changes in workspace. | ||
|
||
|
||
``` | ||
mbt apply local [flags] | ||
``` | ||
|
||
### Options | ||
|
||
``` | ||
-h, --help help for local | ||
``` | ||
|
||
### Options inherited from parent commands | ||
|
||
``` | ||
--in string path to repo | ||
--out string output path | ||
--to string template to apply | ||
``` | ||
|
||
### SEE ALSO | ||
* [mbt apply](mbt_apply.md) - Main command for applying the repository manifest over a template | ||
|
||
###### Auto generated by spf13/cobra on 24-Jan-2018 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
## mbt build local | ||
|
||
Builds the diff between the work dir and the last commit | ||
|
||
### Synopsis | ||
|
||
|
||
Builds the diff between the work dir and the last commit | ||
|
||
Works out the merge base between the local working directory and the last | ||
commit on this branch. Then it will try to build only the modules have changed | ||
during the last commit and the current build. | ||
|
||
Specify the --all flag to everything local branch. | ||
|
||
|
||
``` | ||
mbt build local [--all] [flags] | ||
``` | ||
|
||
### Options | ||
|
||
``` | ||
-a, --all all modules | ||
-h, --help help for local | ||
``` | ||
|
||
### Options inherited from parent commands | ||
|
||
``` | ||
--in string path to repo | ||
``` | ||
|
||
### SEE ALSO | ||
* [mbt build](mbt_build.md) - Main command for building the repository | ||
|
||
###### Auto generated by spf13/cobra on 24-Jan-2018 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
## mbt describe diff | ||
|
||
Describes the manifest for diff between from and to commits | ||
|
||
### Synopsis | ||
|
||
|
||
Describes the manifest for diff between from and to commits | ||
|
||
Works out the merge base for from and to commits and | ||
displays all modules which have been changed between merge base and | ||
the to commit. | ||
|
||
|
||
``` | ||
mbt describe diff --from <commit> --to <commit> [flags] | ||
``` | ||
|
||
### Options | ||
|
||
``` | ||
--from string from commit | ||
-h, --help help for diff | ||
--to string to commit | ||
``` | ||
|
||
### Options inherited from parent commands | ||
|
||
``` | ||
--in string path to repo | ||
--json format output as json | ||
``` | ||
|
||
### SEE ALSO | ||
* [mbt describe](mbt_describe.md) - Describes the manifest of a repo | ||
|
||
###### Auto generated by spf13/cobra on 24-Jan-2018 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
## mbt describe local | ||
|
||
Describes the manifest for the local branch | ||
|
||
### Synopsis | ||
|
||
|
||
Describes the manifest for the local branch | ||
|
||
Displays all modules in the local working directory even if they have not been committed. | ||
|
||
|
||
``` | ||
mbt describe local [flags] | ||
``` | ||
|
||
### Options | ||
|
||
``` | ||
-a, --all describe all | ||
-h, --help help for local | ||
``` | ||
|
||
### Options inherited from parent commands | ||
|
||
``` | ||
--in string path to repo | ||
--json format output as json | ||
``` | ||
|
||
### SEE ALSO | ||
* [mbt describe](mbt_describe.md) - Describes the manifest of a repo | ||
|
||
###### Auto generated by spf13/cobra on 24-Jan-2018 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters