Currently you can do powerful chains like this: ``` git hub repos --raw some-org | git hub clone - ``` But if a target directory already exists, it will fail. A solution is to provide these commands: - `git hub clone-or-skip` -- Don't clone if exists. - `git hub clone-or-pull` -- `git pull` if exists. - `git hub clone-or-ff` -- `git pull --ff-only` if exists.