https://github.com/akshaybabloo/git-alias
Over-engineered pretty git alias printer
https://github.com/akshaybabloo/git-alias
alias git git-alias
Last synced: 24 days ago
JSON representation
Over-engineered pretty git alias printer
- Host: GitHub
- URL: https://github.com/akshaybabloo/git-alias
- Owner: akshaybabloo
- License: mit
- Created: 2022-09-26T19:40:50.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-03-02T23:01:24.000Z (11 months ago)
- Last Synced: 2025-04-07T17:41:28.691Z (10 months ago)
- Topics: alias, git, git-alias
- Language: Go
- Homepage:
- Size: 98.6 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Prettify Git Alias
This is literally the most over-engineered thing I've ever made. It prints out a list of git aliases in a pretty way. It's a bit of a joke, but it's also useful.
## Usage
Add the binary file to your path, and then run `git-alias`. It will print out a list of aliases, and the commands they run.
```bash
$ git-alias
# or, add it to your alias
$ git config --global alias.la '!git-alias'
$ git la
```
Search by using the `--search` or `-s` flag.
```bash
$ git-alias -s "log"
```
Override the default Git configuration file by using the `--config` flag.
```bash
$ git-alias --config "~/.gitconfig"
```