Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/maxcnunes/ngs
n git satus - a tool to check the status of multiple git repositories
https://github.com/maxcnunes/ngs
Last synced: about 1 month ago
JSON representation
n git satus - a tool to check the status of multiple git repositories
- Host: GitHub
- URL: https://github.com/maxcnunes/ngs
- Owner: maxcnunes
- Created: 2014-11-10T22:43:23.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-11-20T03:32:42.000Z (about 10 years ago)
- Last Synced: 2024-10-18T07:23:11.313Z (3 months ago)
- Language: Go
- Homepage:
- Size: 1.18 MB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# n git status (ngs)
Git status command in **n** directories. This is a pretty simple command line to show the status from multiple git repositories.
Currently it can only search in the current directory (or the one specified on `dir`) and it's first children directories.### Download
[Releases](https://github.com/maxcnunes/ngs/releases)
### Installing
Download the bin file for your specif OS and copy into `/usr/local/bin` or include the binary on `$PATH`.
```bash
sudo mv ngs /usr/local/bin/
sudo chmod +x /usr/local/bin/ngs
```### Options
- **-h**: Help message
- **-dir=DIRNAME**: The base directory to start searching### Example
```bash
cd my-dev-folder
$ ngs
» my-first-project/
?? .editorconfig
?? README.md
?? bin/
?? fig.yml
?? main.go
» my-second-project/
M app/index.html
M app/styles/main.scss
```## Development
Running with `Docker` and `Fig`:
```bash
fig run --rm local
```