diff options
author | Nick Van Doorn <nick@nv.delivery> | 2022-11-29 23:37:36 -0800 |
---|---|---|
committer | Nick Van Doorn <nick@nv.delivery> | 2022-11-29 23:37:36 -0800 |
commit | f1d367010f7ccc5c7df24aafc4539cc41c4604c5 (patch) | |
tree | bc9d3f25482fb33d0f3c251dd0852b036917330b /git.zsh | |
parent | 9b087e5ed30776b5d1cb27821088ec6c64c60ec4 (diff) |
Sort git branches by date
Thnx aaron
Diffstat (limited to 'git.zsh')
-rw-r--r-- | git.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -24,7 +24,7 @@ alias poppy='stash pop' alias gcat='gc --amend' alias ok='grb --continue' alias live='gpo $(active_branch) --force-with-lease' -alias gsch='gch $(g branch | fzy)' +alias gsch='gch $(g branch --sort=-committerdate | fzy)' alias changelist='git diff-tree --no-commit-id --name-only -r' alias glog='v -c "Gclog -100"' alias scrubby='g clean -fd' |