clone a **user** on a **hosted gitlab** instance ``` $ ghorg clone --clone-type=user --base-url=https:// --scm=gitlab ``` clone a **group** on a **hosted gitlab** instance **preserving** the directory structure of subgroups ``` $ ghorg clone --base-url=https:// --scm=gitlab --preserve-dir ``` clone only a **subgroup** on a **hosted gitlab** ``` $ ghorg clone / --base-url=https:// --scm=gitlab ``` clone all repos that are **prefixed** with "frontend" **into a folder** called "design_only" from a **group** on a **hosted gitlab** instance ``` $ ghorg clone --base-url=https:// --scm=gitlab --match-prefix=frontend --output-dir=design_only ```