# git-att **Repository Path**: mirrors_watson/git-att ## Basic Information - **Project Name**: git-att - **Description**: Check if the current git project 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 # git-att Check if the current git project needs attention by checking 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 let you know. [![Build status](https://travis-ci.org/watson/git-att.svg?branch=master)](https://travis-ci.org/watson/git-att) [![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat)](https://github.com/feross/standard) ## Installation Install git-att globally: ``` npm install -g git-att ``` ## Example usage ``` $ git att branch: patch-1 ahead: 10 dirty: 2 untracked: 1 ``` ## Docs ``` git-att [options] ``` Options: - `--help` - show the help - `--version` - show version - `--quiet` - don't output anything (check the exist code) ## License MIT