Socket
Socket
Sign inDemoInstall

cox

Package Overview
Dependencies
82
Maintainers
4
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
4
Install size
3.87 MB
Created

Readme

Source

cox

CLI commander for developing with multiple submodules, each with their own Git repository. Cox runs both Git and NPM-related tasks on the project source folder, as well as all the versioned submodules.

As such, a "cox checkout " should be seen as : check out branch in the project root, AS WELL as in all the submodules' repositories. This allows you to create a new feature (one that might affect contents in multiple submodules) recursively in a single command (see "cox start").

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 on these repositories too.

update
cox update

runs npm update in the project folder and in all submodules

Start

cox start <branchName>

Start developing on a new branch with given name 'branchName', the new branch will be branched off 'develop' by default.

cox start <branchName> <sourceBranch>

Start developing on a new branch with given name 'branchName', the new branch will be branched off 'sourceBranch'.

checkout
cox checkout <branchName>
//or to checkout a new branch:
cox checkout -b <branchName>

Change to another branch

reset
cox reset

runs 'git reset --hard'.

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 <branchName>

GIT pushes the latest changes in the current branch to origin

kill
cox kill <branchName>

checks out develop, kills the branch locally and kills the branch remotely on origin (!)

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

Keywords

FAQs

Last updated on 18 May 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