feat(mercurial): add hg log aliases (#9979)

Co-authored-by: Michał Kielan <kielanm@fb.com>
This commit is contained in:
TheTechRobo 2021-10-04 09:55:18 -04:00 committed by GitHub
commit 717ece07ef
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View file

@ -17,6 +17,8 @@ alias hgi='hg incoming'
alias hgl='hg pull -u'
alias hglr='hg pull --rebase'
alias hgo='hg outgoing'
alias hglg='hg log --stat -v'
alias hglgp='hg log --stat -p -v'
function in_hg() {
if $(hg branch > /dev/null 2>&1); then