git: add rank alias

This commit is contained in:
Mathieu Maret 2023-01-24 16:16:09 +01:00
parent 726cb99414
commit 54fd28a37e
1 changed files with 2 additions and 0 deletions

View File

@ -40,6 +40,7 @@
cleanbr = remote prune origin
cleanbrshow = remote prune origin --dry-run
cleanupbr = "!git branch --merged | grep -v '\\*\\|master\\|develop\\|dev' | xargs -n 1 git branch -d"
# Remove local branch that have been removed on the server
cleanupbrprune = "!git fetch --prune"
contains = !sh -c 'git branch -a --contains $1' -
wdiff = diff --word-diff=color --unified=1
@ -68,6 +69,7 @@
ri = "rebase -i --autostash --autosquash"
up = pull --rebase --autostash
rebaseour = "rebase -Xours"
rank = "shortlog -s -n --no-merges"
[rebase]
# when rebasing, update the other common branch too.
# See https://andrewlock.net/working-with-stacked-branches-in-git-is-easier-with-update-refs/