[releng] allow to specify a period
- From: Olav Vitters <ovitters src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [releng] allow to specify a period
- Date: Mon, 20 Aug 2012 09:57:17 +0000 (UTC)
commit bb949d9bce33c68a438cbb61c10412c3adbbe0dc
Author: Olav Vitters <olav vitters nl>
Date: Mon Aug 20 11:57:13 2012 +0200
allow to specify a period
tools/contributions/get-git-stats | 19 ++++++++++++++++++-
1 files changed, 18 insertions(+), 1 deletions(-)
---
diff --git a/tools/contributions/get-git-stats b/tools/contributions/get-git-stats
index 3957e1a..188ee99 100755
--- a/tools/contributions/get-git-stats
+++ b/tools/contributions/get-git-stats
@@ -1,7 +1,22 @@
#!/bin/sh
# vim: set ts=4 sw=4:
-SINCE="2011-04-06"
+if [ -z "$1" ]; then
+ echo "Usage: $0 SINCE UNTIL" >&2
+ echo "" >&2
+ echo "e.g. $0 2011-04-06 2011-09-28"
+ exit 1
+fi
+
+SINCE="$1"
+UNTIL="$2"
+
+if [ -z "UNTIL" ]; then
+ UNTIL=`date "+%Y-%m-%d" --date="tomorrow"`
+fi
+
+mkdir -p $UNTIL || exit 1
+cd $UNTIL || exit 1
statdir=`pwd`
@@ -71,3 +86,5 @@ sort "$statdir"/all-authors | uniq -c | sort -rn > "$statdir/authors.csv"
sort "$statdir"/all-committers | uniq -c | sort -rn > "$statdir/committers.csv"
rm -f "$statdir/authors" "$statdir/committers"
+
+cd ..
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]