
Research
/Security News
Toptal’s GitHub Organization Hijacked: 10 Malicious Packages Published
Threat actors hijacked Toptal’s GitHub org, publishing npm packages with malicious payloads that steal tokens and attempt to wipe victim systems.
@panirudh/bitbucket-multi-repo-management
Advanced tools
A node.js console application that manages multiple git repositories in Bitbucket Cloud via the Bitbucket API.
A node.js console application that manages multiple git repositories in Bitbucket Cloud via the Bitbucket API.
This tool was created namely for creating branches and tags on multiple repositories without having to clone them locally. While this tool only calls a few Bitbucket API endpoints, there's no reason it couldn't be expanded to add more functionality.
Install globally via npm:
npm install -g @panirudh/bitbucket-multi-repo-management
or yarn:
yarn global add @panirudh/bitbucket-multi-repo-management
You should now have bmrm
available as a global executable.
Run it without any commands to see the help page:
bmrm
Run the init
command to setup your bitbucket username and app password.
bmrm init
Note: Do not use your own bitbucket password. Instead, create an "app password" with repositories read and write access. More info here on creating app passwords: https://support.atlassian.com/bitbucket-cloud/docs/app-passwords/
Once finished, a config file will be created at ~/.bmrm-auth.json
. You can edit this file anytime
to change any configuration manually.
Create a .bmrm.json
file or run bmrm create-config
to create a file for you.
{
"repositories": [
"organization/the-best-repository",
"organization/awesome-repository"
]
}
The following fields are valid in the configuration file:
repositories
An array of bitbucket repositories you'd like to run commands on. This should be the full name of the repository, include the organization / user account.
versionPrefix
A prefix for versioning (eg "v").
When using the tag create --interactive
command, a version prefix can be added to tags automatically.
prereleaseIdentifier
If following semver, and using the tag create --interactive
command, this will be the pre-release
suffix that can be generated for release versions (eg "alpha", "beta", "rc", etc).
You can also create a config file in any of these formats:
package.json -- as a "bmrm" key
.bmrm
.bmrm.json
.bmrm.yaml
.bmrm.yml
.bmrm.js
.bmrm.cjs
bmrm.config.js
bmrm.config.cjs
We use cosmiconfig to load these different files, checkout that library for more information.
Run repo list
to view all the repositories you'd added so far:
bmrm repo list
Run branch create
or branch delete
to manage branches on all repositories.
bmrm branch create <fromBranch> <branchName>
bmrm branch delete <branchName>
You will see your list of repositories, and some action information with a prompt to confirm before the action is executed.
Run tag create
and tag delete
to manage tags on all repositories.
bmrm tag create <fromBranchOrHash> <tagName>
# Or interactively with semver suggested versions based on the current version:
bmrm tag create --interactive
bmrm tag delete <tagName>
FAQs
A node.js console application that manages multiple git repositories in Bitbucket Cloud via the Bitbucket API.
The npm package @panirudh/bitbucket-multi-repo-management receives a total of 0 weekly downloads. As such, @panirudh/bitbucket-multi-repo-management popularity was classified as not popular.
We found that @panirudh/bitbucket-multi-repo-management demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Threat actors hijacked Toptal’s GitHub org, publishing npm packages with malicious payloads that steal tokens and attempt to wipe victim systems.
Research
/Security News
Socket researchers investigate 4 malicious npm and PyPI packages with 56,000+ downloads that install surveillance malware.
Security News
The ongoing npm phishing campaign escalates as attackers hijack the popular 'is' package, embedding malware in multiple versions.