https://github.com/mrowa44/vanilla-git-aliases
Dead simple, clean aliases for git commands
https://github.com/mrowa44/vanilla-git-aliases
Last synced: about 1 year ago
JSON representation
Dead simple, clean aliases for git commands
- Host: GitHub
- URL: https://github.com/mrowa44/vanilla-git-aliases
- Owner: mrowa44
- Created: 2017-04-08T13:01:43.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-04-08T14:18:44.000Z (about 9 years ago)
- Last Synced: 2025-01-30T01:28:05.165Z (over 1 year ago)
- Language: Shell
- Homepage:
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
vanilla-git-aliases
===================
> **Dead simple**, clean aliases for git commands.
Only defines an alias for the base of a command, so instead of:
```
alias gbr='git branch --remote'
```
it only has:
```
alias gb='git branch'
```
So to achieve the former user would have to do `gb --remote`.
This ensures both quicker memorization and simpler setup.
Only exceptions are: `git add --all`, `git commit --amend`, `git diff --cached` and `git
reset HEAD` as those are too frequently used to not have an alias for.
Full list of aliases
--------------------
See [vanilla-git-aliases.zsh](vanilla-git-aliases.zsh)
License
-------
MIT © [Justyna Rachowicz](https://github.com/mrowa44)