From ca81ef452b01335ef2443f5223f3786a31f09ea6 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Alexis=20Laferri=C3=A8re?= Date: Sat, 17 Feb 2018 18:59:00 -0500 Subject: [PATCH] share: add picnit manual MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Alexis Laferrière --- share/man/picnit.md | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 share/man/picnit.md diff --git a/share/man/picnit.md b/share/man/picnit.md new file mode 100644 index 0000000..6b353d1 --- /dev/null +++ b/share/man/picnit.md @@ -0,0 +1,55 @@ +# NAME + +picnit - Nit package manager + +# SYNOPSIS + +picnit [--help] [--verbose] [] + +# OPTIONS + +### `-h`, `--help` + +Show the help message. + +### `-v`, `--verbose` + +Print more information, may be useful for debugging. + +# COMMANDS + +### install + +Install a package by searching for its name or directly from a Git repository URL. + + picnit install hello_picnit + picnit install https://gitlab.com/xymus/hello_picnit.git + +### list + +List installed packages. + + picnit list + +### upgrade + +Upgrade a package. + + picnit upgrade hello_picnit + +### uninstall + +Uninstall a package. + + picnit uninstall hello_picnit + +### help + +Show general help message or the help for a command. + + picnit help + picnit help install + +# SEE ALSO + +The Nit language documentation and the source code of its tools and libraries may be downloaded from -- 1.7.9.5