Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

blame + unstage #2433

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions plugins/git/git.plugin.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ alias gb='git branch'
compdef _git gb=git-branch
alias gba='git branch -a'
compdef _git gba=git-branch
alias gbl='git blame -b -w'
compdef _git gbl=git-blame
alias gcount='git shortlog -sn'
compdef gcount=git
alias gcl='git config --list'
Expand All @@ -71,8 +73,10 @@ compdef _git ga=git-add
alias gm='git merge'
compdef _git gm=git-merge
alias grh='git reset HEAD'
alias gru='git reset --'
alias grhh='git reset HEAD --hard'
alias gclean='git reset --hard && git clean -dfx'
compdef _git gm=git-reset
alias gwc='git whatchanged -p --abbrev-commit --pretty=medium'

#remove the gf alias
Expand Down