TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Show HN: Track your Git commit statistics

18 pointsby stravidover 13 years ago

4 comments

zalewover 13 years ago
relevant, for mercurial:<p>hg has an extension for that <a href="http://mercurial.selenic.com/wiki/ChurnExtension" rel="nofollow">http://mercurial.selenic.com/wiki/ChurnExtension</a><p>results are easy to parse to generate some other view<p><pre><code> zalew:~/webprojects/x$ hg churn -f '%u-%a' -s 1-Mon 1690 ** 2-Tue 4756 ****** 3-Wed 3007 **** 5-Fri 70758 **************************************************************************************** (dj125)2011-10-25 17:38:36 zalew:~/webprojects/x$ hg churn -f '%u-%a' -s -c 1-Mon 12 ***************************************** 2-Tue 26 **************************************************************************************** 3-Wed 4 ************** 5-Fri 9 ****************************** (dj125)2011-10-25 17:38:58 zalew:~/webprojects/x$ hg churn -f '%H' -s -c 02 1 ********** 03 4 **************************************** 04 6 ************************************************************* 05 3 ****************************** 06 8 ********************************************************************************* 07 3 ****************************** 11 1 ********** 12 2 ******************** 13 3 ****************************** 14 5 *************************************************** 15 3 ****************************** 16 9 ******************************************************************************************* 17 3 ******************************</code></pre>
mcobrienover 13 years ago
This sounds interesting, but what kinds of commit statistics can I expect to see if I sign up?<p>Also, is there any way to get statistics on existing commits in a repo I have? It would be awesome if I could do something like:<p><pre><code> cd ~/code/myproject curl https://hulkort.herokuapp.com/load.sh | sh </code></pre> and get back a URL with all my stats for that repo fully loaded.
评论 #3154236 未加载
stravidover 13 years ago
After one of my articles (<a href="http://news.ycombinator.com/item?id=2965626" rel="nofollow">http://news.ycombinator.com/item?id=2965626</a>) got on HN, I built this little website with a friend. It's very simple and only tracks the commit count with the help of Git hooks.<p>Looking forward to any comments!
评论 #3154164 未加载
bretthopperover 13 years ago
For the love of god, let us see an example.
评论 #3154254 未加载