Socket
Socket
Sign inDemoInstall

cox

Package Overview
Dependencies
82
Maintainers
2
Versions
29
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    cox

git commander for multi-repositories


Version published
Maintainers
2
Install size
5.44 MB
Created

Readme

Source

cox

CLI commander for developing with our current module system
Allows for running necessary tasks in the project folder and all the modules
All Cox commands should be run from the root of the main project.

Installation

npm install -g cox

Usage

Install

cox install

installs all the project modules, defined in package.json coxDependencies, like:

  "coxDependencies": {
    "some-lib": "git@github.com:username/some-lib.git",
    "some-other-lib": "git@github.com:username/some-other-lib.git",
  }

Then runs npm install in these repositories too.

update
cox update

runs npm update in the project folder and in all modules

Start

cox start XE-1234

Start developing on a new branch

checkout
cox checkout XE-1234
//or to checkout a new branch:
cox checkout -b XE-1234

Change to another branch

reset
cox reset

runs 'git reset --hard' on all repos

pull
cox pull

GIT pulls the latest changes in the current branch

status
cox status

displays the GIT status of all repos

diff
cox diff

displays the GIT diff of all repos

add
cox add

runs git add to all files unstaged in all repos

commit
cox commit "<message>"

commits staged changes to all the repos with given message

push
cox push <ticket>

GIT pushes the latest changes in the current branch

kill
cox kill <ticket>

checks out develop and kills the branch locally

Please use Cox responsibly, don't forget to use protection.

Keywords

FAQs

Last updated on 17 Jan 2015

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc