Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
OpenWalnut
OpenWalnut Core
Commits
5511fbc1
Commit
5511fbc1
authored
Sep 08, 2009
by
Alexander Wiebel
Browse files
[ADD] small scripts that produces statistics about the repository
parent
a303e865
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
0 deletions
+18
-0
tools/hgStatistics
tools/hgStatistics
+18
-0
No files found.
tools/hgStatistics
0 → 100755
View file @
5511fbc1
#!/bin/bash
echo
"count of changed lines per month"
hg churn
-f
'%Y-%m'
-s
echo
"==============================================================="
echo
"count of commits per month"
hg churn
-f
'%Y-%m'
-s
-c
echo
"==============================================================="
echo
"count of changed lines per hour"
hg churn
-f
'%H'
-s
echo
"==============================================================="
echo
"count of commits per hour"
hg churn
-f
'%H'
-s
-c
echo
"==============================================================="
echo
"count of changed lines for every committer"
hg churn
echo
"==============================================================="
echo
"count of commits for every committer"
hg churn
-c
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment