Skip to content

Instantly share code, notes, and snippets.

@torufurukawa
Created October 19, 2011 10:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save torufurukawa/1297948 to your computer and use it in GitHub Desktop.
Save torufurukawa/1297948 to your computer and use it in GitHub Desktop.
Mercurial (hg) で現在のブランチにおけるログメッセージをすべて表示する
#!/bin/sh
hg log -b `hg branch` -v | awk '$1 !~ /(changeset|branch|user|date|files|description|tag):/ {print}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment