Remove default for git reset

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 2016-04-11 13:52:17 +02:00
parent d310fac7f6
commit 6a9640749a

View File

@ -179,8 +179,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'