Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/ryym/gits
- Owner: ryym
- License: mit
- Created: 2017-03-16T14:46:47.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2020-01-20T06:41:24.000Z (about 5 years ago)
- Last Synced: 2024-06-20T10:20:07.477Z (7 months ago)
- Topics: cli, golang
- Language: Go
- Homepage:
- Size: 5.86 KB
- Stars: 2
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
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
```