
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
@brendonjohn/git-pull-all
Advanced tools
Concurrent git pull executor for multiple git repositories.
git-pull-all is a command line tool to execute git pull on multiple git repositories in parallel. Because it is asynchronous, it works really well especially for many projects and must be a lot faster than any synchronous ways, such as:
#!/bin/sh
find . -type d -name .git -exec sh -c "cd \"{}\"/../ && pwd && git pull" \;
Using npm:
$ npm install -g git-pull-all
Assume you have these files and directories:
~/Projects/
cool-examples/
.git/
funny-movies/
my-todos.txt
super-express/
.git/
When you run git-pull-all
command on ~/Projects
directory, it should find child git repositories (in the above case cool-examples and super-express) then execute git pull
on each of them.
$ cd ~/Projects
$ git-pull-all
funny-movies/
Not a git repository
cool-examples/
Already up-to-date.
super-express/
Already up-to-date.
Done!
You can also specify the path where the command is executed.
$ git-pull-all ~/Projects
MIT
FAQs
Concurrent git pull executor for multiple git repositories.
The npm package @brendonjohn/git-pull-all receives a total of 1 weekly downloads. As such, @brendonjohn/git-pull-all popularity was classified as not popular.
We found that @brendonjohn/git-pull-all 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.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.