diff options
author | June McEnroe <programble@gmail.com> | 2016-01-14 11:17:07 -0500 |
---|---|---|
committer | June McEnroe <programble@gmail.com> | 2016-01-14 11:17:07 -0500 |
commit | 1c9ff2fb12420c7f4fdd00a2f85db45ebb8257e7 (patch) | |
tree | 2cdf21206dbca20c4c98477b3980ba21acdb69b6 | |
parent | Hash SSH known hosts (diff) | |
download | src-1c9ff2fb12420c7f4fdd00a2f85db45ebb8257e7.tar.gz src-1c9ff2fb12420c7f4fdd00a2f85db45ebb8257e7.zip |
Remove unused git aliases
-rw-r--r-- | .zshrc | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/.zshrc b/.zshrc index 7fa8f3b4..ec27c88e 100644 --- a/.zshrc +++ b/.zshrc @@ -99,9 +99,7 @@ alias gca='git commit --amend' alias gcl='git clone' alias gco='git checkout' alias gd='git diff' -alias gi='git init' -alias gl='git log' -alias glg="git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative --color" +alias gl="git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative --color" alias gm='git merge' alias gmv='git mv' alias gp='git push' @@ -116,7 +114,6 @@ alias gst='git stash' alias gt='git tag' alias gu='git pull' alias gf='git fetch' -alias gbl='git blame' alias hu=heroku |