From f9e9a5868c60c24ff2bb8901977bfaee64e50172 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jozef=20Steinh=C3=BCbl?= Date: Sat, 27 Jul 2024 22:15:01 +0200 Subject: [PATCH] feat: ci help message --- src/cli/cli.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/cli/cli.c b/src/cli/cli.c index 46c730c..337b9c5 100644 --- a/src/cli/cli.c +++ b/src/cli/cli.c @@ -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() {