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

pull/1679/head
Gurkirat Singh 2020-10-16 02:25:42 +05:30
parent 66abae9cdd
commit fff5439242
No known key found for this signature in database
GPG Key ID: BCF5FF7C9FC8EED0
1 changed files with 2 additions and 0 deletions

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'