1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-11-11 00:10:08 +00:00

Remove default for git reset (#4993)

The command will do the same as before, but now you can also specify
a path.

Example:
grh branch-name
grhh tag-name
This commit is contained in:
Matteo Giaccone 2018-06-12 18:23:31 +02:00 committed by Marc Cornellà
parent 019e0d7c71
commit 0808c0f6ef

View file

@ -211,8 +211,8 @@ alias grbc='git rebase --continue'
alias grbi='git rebase -i'
alias grbm='git rebase master'
alias grbs='git rebase --skip'
alias grh='git reset HEAD'
alias grhh='git reset HEAD --hard'
alias grh='git reset'
alias grhh='git reset --hard'
alias grmv='git remote rename'
alias grrm='git remote remove'
alias grset='git remote set-url'