Basically, I want to get all my open branches, like this:
hg log --rev "author('ME') and head() and not closed()"
and show the branch name in the result when I run this command in the terminal.
Basically, I want to get all my open branches, like this:
hg log --rev "author('ME') and head() and not closed()"
and show the branch name in the result when I run this command in the terminal.
I found out templates can handle this.
hg log --rev "author('ME') and head() and not closed()" --template {branch\n}