From: Alexis Laferrière Date: Sat, 17 Feb 2018 23:59:00 +0000 (-0500) Subject: share: add picnit manual X-Git-Url: http://nitlanguage.org share: add picnit manual Signed-off-by: Alexis Laferrière --- 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