https://github.com/sandeep1995/git-extra-status
Get more information for a single or batch of git repositories with a single command
https://github.com/sandeep1995/git-extra-status
git shell-scripts terminal utility
Last synced: 7 months ago
JSON representation
Get more information for a single or batch of git repositories with a single command
- Host: GitHub
- URL: https://github.com/sandeep1995/git-extra-status
- Owner: sandeep1995
- License: mit
- Created: 2018-07-10T11:58:34.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-07-19T09:36:10.000Z (over 7 years ago)
- Last Synced: 2025-03-28T19:07:12.125Z (8 months ago)
- Topics: git, shell-scripts, terminal, utility
- Language: Shell
- Size: 12.7 KB
- Stars: 106
- Watchers: 5
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

Get more information for a single or multiple repositories with a single command.
## Inspiration
Simultaneously working with multiple git repositories can be really annoying.
Like the knowing the current branch names, is there anything to pull or push,
or Do I have any uncommitted changes?
`ges` tries to solve this problem.
## Installation
1. Clone the repository in your home directory
```bash
cd $HOME; git clone https://github.com/sandeep1995/git-extra-status.git
```
2. Add the `bin` path in your global path. You can do it in your `.bash_profile` or `.bashrc` or `.zshrc` file.
```
export PATH=$PATH:$HOME/git-extra-status/bin
```
### Single usage
Go to any git repository and execute
```bash
ges
````

### Batch Usage
Go to any directory with multiple git repositories and then execute
```bash
ges *
```
