https://github.com/yukimemi/gsr
git status recurse.
https://github.com/yukimemi/gsr
Last synced: 2 months ago
JSON representation
git status recurse.
- Host: GitHub
- URL: https://github.com/yukimemi/gsr
- Owner: yukimemi
- Created: 2017-03-07T12:13:55.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-05-09T04:46:00.000Z (about 8 years ago)
- Last Synced: 2025-02-05T10:12:55.505Z (4 months ago)
- Language: Go
- Size: 11.7 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# gsr
Run git status recursively.
## Usage
By default, display only repositories with differences.
```bash
$ gsr path/to/dir
path/to/dir/repo1
path/to/dir/repo3
```Show status with `--status` option.
```bash
$ gsr --status path/to/dir
path/to/dir/repo1
## master...origin/master
M .gitignorepath/to/dir/repo3
## dev
M cmd/root.go
```If you use [motemen/ghq](https://github.com/motemen/ghq) , you can omit arguments.
```bash
$ gsr
/Users/yukimemi/.ghq/src/github.com/yukimemi/gsr
/Users/yukimemi/.ghq/src/github.com/yukimemi/core
```## Install
To install, use `go get`:
```bash
$ go get github.com/yukimemi/gsr
```## Contribution
1. Fork ([https://github.com/yukimemi/gsr/fork](https://github.com/yukimemi/gsr/fork))
1. Create a feature branch
1. Commit your changes
1. Rebase your local changes against the master branch
1. Run test suite with the `go test ./...` command and confirm that it passes
1. Run `gofmt -s`
1. Create a new Pull Request## Author
[yukimemi](https://github.com/yukimemi)