Created
June 28, 2012 10:00
-
-
Save paulrouget/3010379 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Get a list of all the bugs you fixed: | |
| hg log -u [email protected] --template '{date|isodate}: {desc}\n' | |
| # it doesn't filter out the merges, backouts, etc. | |
| # Add this to your hgrc: | |
| [alias] | |
| mybugs = log -u [email protected] --template '{date|isodate}: {desc}\n' | |
| hg mybugs | |
| # Filter by date: | |
| hg mybugs --date "2012-06-18 to 2012-06-28" | |
| hg mybugs --date "-7" #bugs from last week | |
| # update your hgrc: | |
| [alias] | |
| mybugs = log -u [email protected] --template '{date|isodate}: {desc}\n' | |
| lastweek = mybugs --date "-7" | |
| hg lastweek | |
| # To filter out your queue: | |
| hg lastweek -r qparent:0 | |
| # Stat: | |
| hg lastweek --stat |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment