# GitHub Examples > Note: all command line arguments can be permanently set in your `$HOME/.config/ghorg/conf.yaml` for more information see the [configuration](https://github.com/gabrie30/ghorg#configuration) section of the README.md. To view all additional flags see the [sample-conf.yaml](https://github.com/gabrie30/ghorg/blob/master/sample-conf.yaml) or use `ghorg clone --help` ## GitHub Cloud 1. Clone an **org**, using a token on the commandline ``` ghorg clone --token=XXXXXX ``` 1. Clone all repos from a **github org** that are **prefixed** with "frontend" **into a folder** called "design_only" ``` ghorg clone --match-regex=^frontend --output-dir=design_only --token=XXXXXX ``` 1. Clone a **users** repos, assumes ghorg conf.yaml is setup with a token ``` ghorg clone --clone-type=user --token=bGVhdmUgYSBjb21tZW50IG9uIGlzc3VlIDY2 ``` ## GitHub Enterprise 1. Clone an **org** ``` ghorg clone --base-url=https://.com --token=XXXXXX ``` 1. Clone all repos from a **github org** that are **prefixed** with "frontend" **into a folder** called "design_only" ``` ghorg clone --match-regex=^frontend --output-dir=design_only --base-url=https://.com --token=XXXXXX ``` 1. Clone a **users** repos ``` ghorg clone --clone-type=user --base-url=https://.com --token=XXXXXX ```