Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ryym/gits

List git repositories in a directory recursively
https://github.com/ryym/gits

cli golang

Last synced: 6 days ago
JSON representation

List git repositories in a directory recursively

Awesome Lists containing this project

README

        

# Gits

[![travis](https://travis-ci.org/ryym/gits.svg?branch=master)](https://travis-ci.org/ryym/gits)

Gits lists all git repositories in the specified path.

## Usage

```sh
$ gits
gits lists git repositories in the specified path.
Usage: gits [options]
-h Show help message
-p Print full paths
```

For instance, you can list git packages in the `$GOPATH/src` using this command.

```sh
$ gits $GOPATH/src
hello-world
github.com/peco/peco
github.com/ryym/bar
github.com/ryym/baz
golang.org/x/net
golang.org/x/text
...
```

## Install

```
go get -u github.com/ryym/gits
```