Metadata-Version: 2.1
Name: lsbranch
Version: 1.0.2
Summary: List all directories with .git subdirectory and show current branch for each.
Home-page: https://github.com/arrrlo/lsbranch
Author: Ivan Arar
Author-email: ivan.arar@gmail.com
License: MIT
Project-URL: Source, https://github.com/arrrlo/lsbranch
Keywords: git,branch,ls
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown
Requires-Dist: click (==6.3)
Requires-Dist: colorama (~=0.3)
Requires-Dist: pyfiglet (~=0.7.5)
Requires-Dist: termcolor (~=1.1.0)

<h1>lsbranch</h1>

[![PyPI version](https://badge.fury.io/py/lsbranch.svg)](https://badge.fury.io/py/lsbranch)

<p>List all directories with .git subdirectory and show current branch for each.</p>

<h3>Instalation</h3>

```
pip install lsbranch
```

<h3>CLI Usage</h3>

```bash
Usage: lsbranch [OPTIONS]

  List all directories with .git subdirectory and show current branch for
  each

Options:
  -r, --recursive  Recursive directory search
  -p, --path PATH  Path to search
  --help           Show this message and exit.
```

<p>Let's say that you want to list all git dirs in current dir, recursively</p>


```bash
> lsbranch -r -p .
```

<p>Let's say you just want to list all git dirs in current dir, not recursively</p>


```bash
> lsbranch
```

