Re: [Python-Dev] Useful "hg log" trick to only see revisions in the current branch

2011-03-22 Thread Nick Coghlan
On Tue, Mar 22, 2011 at 10:49 PM, R. David Murray wrote: > So: there is completion support for hg update for both bash and zsh. > Not sure about other shells. Thanks for clarifying that, I've long been hazy on the details of how completion works across various utilities (it also clears up why the

Re: [Python-Dev] Useful "hg log" trick to only see revisions in the current branch

2011-03-22 Thread R. David Murray
On Tue, 22 Mar 2011 21:11:42 +1000, Nick Coghlan wrote: > Also, for anyone that wasn't already aware, "hg update" supports tab > completion when switching branches, which can make life a bit easier > when working with named branches. You are the second person I've heard say this, and it is a litt

[Python-Dev] Useful "hg log" trick to only see revisions in the current branch

2011-03-22 Thread Nick Coghlan
"hg log -b ." restricts the hg log output to the changesets in the currently active branch. Other commands (such as "hg outgoing") similarly accept "-b ." to request restricting their operation to the current branch. Also, for anyone that wasn't already aware, "hg update" supports tab completion