Created
March 8, 2018 07:06
-
-
Save kkismd/80f62740169ad58fab88f75380544f46 to your computer and use it in GitHub Desktop.
bash / zsh function `gi tlog` -> `git log`
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# `git log` TYPO to `gi tlog` | |
function gi() { | |
a1=${1#t} | |
shift | |
git $a1 $* | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment