by default, just typing hg
in the command prompt will show the basic help - what is nice for novice, of course.
But is there a way to modify this, so that for example the current summary is shown?
(i.e. get the result of hg sum
when just typing hg
).
BTW: What I do in place of that, is having one character alias configured like this
[alias]
, = glog -l5 --template "{rev}:{node|short} [{tags}] {desc|firstline}\n"
. = !%HG% sum && echo. && echo *** GUARDS *** && %HG% qsel && echo. && echo *** applied PATCHES *** && %HG% qap
I just want to know if this can further be optimized.