mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-13 09:20:09 +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:
parent
019e0d7c71
commit
0808c0f6ef
1 changed files with 2 additions and 2 deletions
|
@ -211,8 +211,8 @@ alias grbc='git rebase --continue'
|
||||||
alias grbi='git rebase -i'
|
alias grbi='git rebase -i'
|
||||||
alias grbm='git rebase master'
|
alias grbm='git rebase master'
|
||||||
alias grbs='git rebase --skip'
|
alias grbs='git rebase --skip'
|
||||||
alias grh='git reset HEAD'
|
alias grh='git reset'
|
||||||
alias grhh='git reset HEAD --hard'
|
alias grhh='git reset --hard'
|
||||||
alias grmv='git remote rename'
|
alias grmv='git remote rename'
|
||||||
alias grrm='git remote remove'
|
alias grrm='git remote remove'
|
||||||
alias grset='git remote set-url'
|
alias grset='git remote set-url'
|
||||||
|
|
Loading…
Reference in a new issue