GitHub CLI extension to clone all repositories in an Organization, with the ability to filter via search queries. If a local clone already exists, it fetches all remotes and pulls changes from the default branch.
- Install the
gh
CLI. See https://github.com/cli/cli#installation for further details. - If not done already, also install Git.
- To be able to clone private repos you have access to inside the Organization, authenticate with your GitHub account by running
gh auth login
. Alternatively, the CLI will respect theGITHUB_TOKEN
environment variable. - Install the extension:
gh extension install rm3l/gh-org-repo-sync
❯ gh org-repo-sync -h
Usage: gh org-repo-sync <organization> [options]
Options:
-batch-size int
the number of elements to retrieve at once. Must not exceed 100 (default 50)
-dry-run
dry run mode. to display the repositories that will get cloned or updated,
without actually performing those actions
-force
whether to force sync repositories.
Caution: this will hard-reset the branch of the destination repository to match the source repository.
-output string
the output path (default ".")
-protocol string
the protocol to use for cloning. Possible values: system, ssh, https. (default "system")
-query string
GitHub search query, to filter the Organization repositories.
Example: "language:Java stars:>10 pushed:>2010-11-12"
See https://bit.ly/3HurHe3 for more details on the search syntax
- Clone the repository:
git clone https://github.com/rm3l/gh-org-repo-sync
cd gh-org-repo-sync
-
Download and install Go to build the project. Or if you are already using the asdf version manager, you can just run
asdf install
to install all the necessary tools (declared in the .tool-versions file). -
Install the local version of this extension;
gh
symlinks to your local source code directory.
# Install the local version
gh extension install .
- At this point, you can start using it:
gh org-repo-sync <my-organization>
- To see changes in the code as you develop, simply build and use the extension
go build && gh org-repo-sync <my-organization>
Contributions and issue reporting are more than welcome. So to help out, do feel free to fork this repo and open up a pull request. I'll review and merge your changes as quickly as possible.
You can use GitHub issues to report bugs. However, please make sure your description is clear enough and has sufficient instructions to be able to reproduce the issue.
- Armel Soro
The MIT License (MIT)
Copyright (c) 2022 Armel Soro
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.