
Security News
Astral Launches pyx: A Python-Native Package Registry
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
The most stupid way to run a git command on multiple repositories.
Install this library via NPM:
npm -g install git-multi
git-multi
runs a git command sequentially on 2+ repositories. This can be useful when you have a project spread on more repositories (ie. an app repository and some dependencies, like libraries or plugins) and you want to run the same exact git command on the main repository and it dependencies.
cd <main repository>
.gitmulti
file.gitmulti
the path to any repository you want to manage with git-multi (1 per line)Then, in the <main repository>
you can run any git command like this:
git multi status
And it will run git status
in the <main repository>
and all dependencies repositories (configured in .gitmulti
).
If you have the following repositories:
/workspace/main-app
/workspace/lib-1
/workspace/lib-2
You can configure git-multi on your main-app
:
echo "../lib-1" >> /workspace/main-app/.gitmulti
echo "../lib-2" >> /workspace/main-app/.gitmulti
And then run:
cd /workspace/main-app
git multi status
Run any git command on multiple repositories:
git multi <any git command>
List repositories managed by git-multi
:
git multi list
FAQs
The most stupid way to run a git command on multiple repositories.
We found that git-multi demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
Security News
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.
Security News
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.