Skip to content

Instantly share code, notes, and snippets.

@kkismd
Created March 8, 2018 07:06
Show Gist options
  • Save kkismd/80f62740169ad58fab88f75380544f46 to your computer and use it in GitHub Desktop.
Save kkismd/80f62740169ad58fab88f75380544f46 to your computer and use it in GitHub Desktop.
bash / zsh function `gi tlog` -> `git log`
# `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