added git alias to list remote branch creators with date and time

This commit is contained in:
Gurkirat Singh
2020-10-16 02:25:42 +05:30
parent 66abae9cdd
commit fff5439242

View File

@@ -51,6 +51,8 @@ alias gci='git commit --interactive'
alias gcamd='git commit --amend'
alias gb='git branch'
alias gba='git branch -a'
# FROM https://stackoverflow.com/a/58623139/10362396
alias gbc='git for-each-ref --format="%(authorname) %09 %(if)%(HEAD)%(then)*%(else)%(refname:short)%(end) %09 %(creatordate)" refs/remotes/ --sort=authorname DESC'
alias gbt='git branch --track'
alias gbm='git branch -m'
alias gbd='git branch -d'