Unverified Commit 331f3c8b authored by Adam Johnson's avatar Adam Johnson Committed by GitHub

feat(git): add bisect aliases `gbsn` and `gbso` (#11869)

parent 76e541a3
...@@ -32,6 +32,8 @@ plugins=(... git) ...@@ -32,6 +32,8 @@ plugins=(... git)
| gbs | git bisect | | gbs | git bisect |
| gbsb | git bisect bad | | gbsb | git bisect bad |
| gbsg | git bisect good | | gbsg | git bisect good |
| gbsn | git bisect new |
| gbso | git bisect old |
| gbsr | git bisect reset | | gbsr | git bisect reset |
| gbss | git bisect start | | gbss | git bisect start |
| gbl | git blame -w | | gbl | git blame -w |
......
...@@ -113,6 +113,8 @@ alias gapt='git apply --3way' ...@@ -113,6 +113,8 @@ alias gapt='git apply --3way'
alias gbs='git bisect' alias gbs='git bisect'
alias gbsb='git bisect bad' alias gbsb='git bisect bad'
alias gbsg='git bisect good' alias gbsg='git bisect good'
alias gbsn='git bisect new'
alias gbso='git bisect old'
alias gbsr='git bisect reset' alias gbsr='git bisect reset'
alias gbss='git bisect start' alias gbss='git bisect start'
alias gbl='git blame -w' alias gbl='git blame -w'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment