# code-status **Repository Path**: mirrors_watson/code-status ## Basic Information - **Project Name**: code-status - **Description**: Check if any of your git projects needs attention - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-26 - **Last Updated**: 2026-03-29 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # code-status Check if any of your git projects needs attention: Runs through all your code projects and checks the following: - Is the repo on the master branch? - Is the current branch ahead of the remote tracking branch? - Is the repo dirty (i.e. does it contain changes that have not yet been checked in) - Is there any untracked files in the repo? If the answer is yes to any of those questions, this module will find and list the projects. [![Build status](https://travis-ci.org/watson/code-status.svg?branch=master)](https://travis-ci.org/watson/code-status) [![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat)](https://github.com/feross/standard) ## Installation Install code-status globally: ``` npm install -g code-status ``` ## Example usage ``` $ code-status ~/code DIR BRANCH AHEAD DIRTY UNTRACKED after-all-results master 0 1 0 airserver master 0 3 10 connect master 95 1 0 hubot-heroku patch-1 0 1 0 ``` ## Docs ``` code-status [paths] [options] ``` The `paths` defaults to the current directory if not specified. The code-status program will look through that directory and all sub-directories scanning for git projects. Options: - `--help` - show the help - `--version` - show version - `--simple` - make the output more simple for easy grepping ## License MIT