You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by st...@apache.org on 2013/12/06 02:13:38 UTC

[22/32] git commit: CB-5034 add registry info to README

CB-5034 add registry info to README


Project: http://git-wip-us.apache.org/repos/asf/cordova-cli/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-cli/commit/5e4af119
Tree: http://git-wip-us.apache.org/repos/asf/cordova-cli/tree/5e4af119
Diff: http://git-wip-us.apache.org/repos/asf/cordova-cli/diff/5e4af119

Branch: refs/heads/fireos
Commit: 5e4af119c36227852954ec10d8d3b03314377d4b
Parents: ed82c5a
Author: mbillau <mi...@gmail.com>
Authored: Wed Oct 23 15:40:37 2013 -0400
Committer: Andrew Grieve <ag...@chromium.org>
Committed: Thu Dec 5 15:43:36 2013 -0500

----------------------------------------------------------------------
 README.md | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/5e4af119/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
index 716bc16..f26d248 100644
--- a/README.md
+++ b/README.md
@@ -78,8 +78,9 @@ Now the `cordova` and `plugman` in your path are the local git versions. Don't f
 
 cordova-cli has a single global `create` command that creates new cordova projects into a specified directory. Once you create a project, `cd` into it and you can execute a variety of project-level commands. Completely inspired by git's interface.
 
-## Global Command
+## Global Commands
 
+- `help` display a help page with all available commands
 - `create <directory> [<id> [<name>]]` create a new cordova project with optional name and id (package name, reverse-domain style)
 
 <a name="project_commands" />
@@ -88,9 +89,11 @@ cordova-cli has a single global `create` command that creates new cordova projec
 - `platform [ls | list]` list all platforms the project will build to
 - `platform add <platform> [<platform> ...]` add one (or more) platforms as a build target for the project
 - `platform [rm | remove] <platform> [<platform> ...]` removes one (or more) platforms as a build target for the project
+- `platform [up | update] <platform> ` - updates the Cordova version used for the given platform
 - `plugin [ls | list]` list all plugins added to the project
 - `plugin add <path-to-plugin> [<path-to-plugin> ...]` add one (or more) plugins to the project
 - `plugin [rm | remove] <plugin-name> [<plugin-name> ...]` remove one (or more) added plugins
+- `plugin search [<keyword1> <keyword2> ...]` search the plugin registry for plugins matching the list of keywords
 - `prepare [platform...]` copies files into the specified platforms, or all platforms. it is then ready for building by Eclipse/Xcode/etc.
 - `compile [platform...]` compiles the app into a binary for each added platform. With no parameters, builds for all platforms, otherwise builds for the specified platforms.
 - `build [<platform> [<platform> [...]]]` an alias for `cordova prepare` followed by `cordova compile`