mirror of
https://github.com/xHyroM/gimi.git
synced 2024-11-10 02:38:06 +01:00
feat: ci help message
This commit is contained in:
parent
aaabf9edeb
commit
f9e9a5868c
1 changed files with 9 additions and 1 deletions
|
@ -10,7 +10,15 @@
|
|||
#define HELP \
|
||||
"Usage: gimi [-h | --help] [-v | --version]\n\n" \
|
||||
"A simple tool for managing multiple git remotes as mirrors\n\n" \
|
||||
"Commands\n"
|
||||
"Useful commands for working with gimi:\n" \
|
||||
" ci Generate CI configuration for a specific provider\n" \
|
||||
" config Manage gimi configuration settings\n" \
|
||||
" init Initialize a gimi project in the current workspace\n" \
|
||||
" provider Manage providers (git remotes as mirrors)\n" \
|
||||
" push Push all branches or tags to all providers\n\n" \
|
||||
"Options:\n" \
|
||||
" -h, --help Show this help message and exit\n" \
|
||||
" -v, --version Show the version of gimi"
|
||||
|
||||
void cli_print_help() { printf("%s", HELP); }
|
||||
void cli_print_version() {
|
||||
|
|
Loading…
Reference in a new issue