Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/matt-bartel/gh-clone-org

A github-cli extension script to clone all repositories in an organization, optionally filtering by topic.
https://github.com/matt-bartel/gh-clone-org

gh-extension

Last synced: about 2 months ago
JSON representation

A github-cli extension script to clone all repositories in an organization, optionally filtering by topic.

Awesome Lists containing this project

README

        

# gh-clone-org

A github-cli extension script to clone all repositories in an organization, optionally filtering by topic or a search string. If the repository has already been cloned it will attempt to switch to the default branch and pull.

## Installation

```bash
gh extension install matt-bartel/gh-clone-org
```

## Usage

```txt
gh clone-org [-t TOPIC] [-s QUERY] [-p PATH] [-y] ORG
ORG
Github organization. Required if the GITHUB_ORG environment variable is not set.
-y, --yes
Clone without prompting for confirmation.
-p, --path PATH
Clone path. Default: current directory.
-t, --topic TOPIC
Clone repositories with this topic
-s --search QUERY
Clone repositories found by this search string. If this is provided '-t' will be ignored.
Example: -s "is:public language:go"
See: https://docs.github.com/en/github/searching-for-information-on-github/searching-on-github/searching-for-repositories
-n, --dry-run
Do not actually clone, just show what would be cloned
-h, --help
Display this message.
```