1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2025-12-06 15:30:40 +01:00

fix(git): replace whatchanged with log (#13338)

Closes #13333
This commit is contained in:
Carlo Sala
2025-09-29 08:41:24 +02:00
committed by GitHub
parent 1237525b23
commit d57775d89e
2 changed files with 3 additions and 3 deletions

View File

@@ -409,7 +409,7 @@ alias gts='git tag --sign'
alias gtv='git tag | sort -V'
alias gignore='git update-index --assume-unchanged'
alias gunignore='git update-index --no-assume-unchanged'
alias gwch='git whatchanged -p --abbrev-commit --pretty=medium'
alias gwch='git log --patch --abbrev-commit --pretty=medium --raw'
alias gwt='git worktree'
alias gwta='git worktree add'
alias gwtls='git worktree list'