Helper script for working on multiple git repositories in a specific directory.
This script is useful if you work with mxdev sources for project development or if you want to perform backups of a GitHub account.
The tool operates on all git repositories found in the current directory (those containing a .git folder) and executes git commands across them in batch.
- Batch Operations: Execute git commands across multiple repositories at once
- GitHub Integration: Clone or backup all repositories from a GitHub organization or user
- Zero Dependencies: Uses only Python standard library (no external packages required)
- Smart API Access: Automatically tries organization endpoint first, then falls back to user endpoint
- Selective Operations: Target specific repositories or operate on all found repos
- Works with mxdev: Designed for managing mxdev source checkouts during development
- Python 3.9 or higher
- Git must be installed and available in PATH
- GitHub Access: For
cloneandbackupcommands, repositories must be accessible via GitHub's public API (no authentication is performed)
pip install mxrepogit clone https://github.com/mxstack/mxrepo
cd mxrepo
make install # Sets up virtual environment and installs dependencies<CONTEXT>: GitHub organization or user name (e.g.,mxstack,octocat)[<PACKAGE>]: Optional repository name(s) to filter operations. When omitted, operates on all repositories found in the current directory
| Command | Description | Usage | Example |
|---|---|---|---|
clone |
Clone repositories from GitHub org/user | mxrepo clone <CONTEXT> [<PACKAGE>...] |
mxrepo clone mxstack mxdev |
backup |
Backup all repos from org/user (bare mirrors) | mxrepo backup <CONTEXT> |
mxrepo backup myorganization |
pull |
Pull latest changes from origin | mxrepo pull [<PACKAGE>...] |
mxrepo pull |
status |
Show git status for repositories | mxrepo status [<PACKAGE>...] |
mxrepo status myproject |
branch |
List branches in repositories | mxrepo branch [<PACKAGE>...] |
mxrepo branch |
diff |
Show git diff for repositories | mxrepo diff [<PACKAGE>...] |
mxrepo diff |
commit |
Commit all changes with message | mxrepo commit "<MESSAGE>" [<PACKAGE>...] |
mxrepo commit "Fix: update deps" |
push |
Push committed changes to origin | mxrepo push [<PACKAGE>...] |
mxrepo push |
checkout |
mxrepo checkout [<PACKAGE>...] |
mxrepo checkout |
checkout, commit, and push commands are destructive operations. Use with caution.
mxrepo clone mxstackThis fetches all repositories from the GitHub organization mxstack and clones them into the current directory.
mxrepo clone mxstack mxdev mxmakeClones only mxdev and mxmake from the mxstack organization.
mkdir backups
cd backups
mxrepo backup octocatCreates bare mirror clones of all repositories belonging to the GitHub user octocat. The backup command creates a subfolder named after the context.
mxrepo pullExecutes git pull origin <current-branch> in all git repositories found in the current directory.
mxrepo statusShows git status for each repository, useful for seeing which projects have uncommitted changes.
mxrepo commit "Update dependencies to latest versions"Commits all changes in each repository with the same commit message. Equivalent to git commit -am "message" in each repo.
mxrepo pull project1 project2Pulls changes only for project1 and project2 repositories.
- Repository Discovery: Scans the current directory for subdirectories containing a
.gitfolder - Batch Execution: Changes into each repository directory and executes the git command
- GitHub API: For
cloneandbackupcommands, queries GitHub's REST API to fetch repository lists:- Tries organization endpoint:
https://api.github.com/orgs/{context}/repos - Falls back to user endpoint:
https://api.github.com/users/{context}/repos - Handles pagination (50 repos per page)
- Tries organization endpoint:
- Branch Detection: Automatically detects the current branch for pull and push operations
This project uses the MXStack tooling (mxdev and mxmake) for development.
make install # Set up virtual environment and install dependenciesmake check # Run all checks (ruff + isort)
make format # Auto-format code (ruff + isort)make clean # Remove virtual environment and generated files
make runtime-clean # Remove Python cache files (__pycache__, *.pyc)- ruff: Linting and formatting
- isort: Import sorting (black profile, single-line imports)
- uv: Fast Python package installer
src/mxrepo/main.py: Single-module implementation with all functionality- No external dependencies (uses only Python stdlib)
- Simple argparse-based CLI with subcommands
- mxdev: Tools for managing multiple Python packages in development
- githelper: Original project that mxrepo was based on
- Copyright (c) 2025 mxstack Contributors
- BSD 2-clause license (see LICENSE.md)
- Robert Niederreiter
- Johannes Raggam