diff options
author | Adam Johnson <me@adamj.eu> | 2023-09-05 11:41:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-05 12:41:50 +0200 |
commit | bae577d6b2eb621fedc994d6309b6f819855c2f8 (patch) | |
tree | d0f8c7dde1fd5177cf9ac9ec93d9b4bf5c27cb3a /plugins | |
parent | c74f2a1be980c60d937046364db0c9497187457a (diff) | |
download | zsh-bae577d6b2eb621fedc994d6309b6f819855c2f8.tar.gz zsh-bae577d6b2eb621fedc994d6309b6f819855c2f8.tar.bz2 zsh-bae577d6b2eb621fedc994d6309b6f819855c2f8.zip |
fix(git)!: remove `-b` from `blame` alias (#11864)
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/git/README.md | 2 | ||||
-rw-r--r-- | plugins/git/git.plugin.zsh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/git/README.md b/plugins/git/README.md index c3e6dd27d..44ed6f320 100644 --- a/plugins/git/README.md +++ b/plugins/git/README.md @@ -34,7 +34,7 @@ plugins=(... git) | gbsg | git bisect good | | gbsr | git bisect reset | | gbss | git bisect start | -| gbl | git blame -b -w | +| gbl | git blame -w | | gb | git branch | | gba | git branch --all | | gbd | git branch --delete | diff --git a/plugins/git/git.plugin.zsh b/plugins/git/git.plugin.zsh index 8886aac6d..e20373de5 100644 --- a/plugins/git/git.plugin.zsh +++ b/plugins/git/git.plugin.zsh @@ -115,7 +115,7 @@ alias gbsb='git bisect bad' alias gbsg='git bisect good' alias gbsr='git bisect reset' alias gbss='git bisect start' -alias gbl='git blame -b -w' +alias gbl='git blame -w' alias gb='git branch' alias gba='git branch --all' alias gbd='git branch --delete' |