1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-11-12 00:40:07 +00:00

git: add git revert alias (#7841)

* git: add `alias grev="git revert"`

* Swapping double for single quotes

Matching the conventions in the plugin
This commit is contained in:
SomeDer 2019-06-15 18:47:23 +01:00 committed by Robby Russell
parent 9060c1ddae
commit f992d434ec

View file

@ -199,6 +199,7 @@ alias grbd='git rebase develop'
alias grbi='git rebase -i'
alias grbm='git rebase master'
alias grbs='git rebase --skip'
alias grev='git revert'
alias grh='git reset'
alias grhh='git reset --hard'
alias groh='git reset origin/$(git_current_branch) --hard'