You read before how to create a program with Commands.
Now we'll see how to create a CLI program with commands that have their own subcommands. Also known as command groups.
For example, the CLI programgit has a command remote.
But git remote, in turn, has its own subcommands, like add:
fast βπ¬ git remote alone shows the current remote repositoriesgit remote origin
π¬ Use -v to make it verbose and show more infogit remote -v origin git@github.com:yourusername/typer.git (fetch) origin git@github.com:yourusername/typer.git (push)
π¬ git remote add takes 2 CLI arguments, a name and URLgit remote add upstream https://github.com/fastapi/typer.git π¬ Doesn't output anything, but now you have another remote repository called upstream π¬ Now check againgit remote -v origin git@github.com:yourusername/typer.git (fetch) origin git@github.com:yourusername/typer.git (push) upstream https://github.com/fastapi/typer.git (fetch) upstream https://github.com/fastapi/typer.git (push)