From 4cffd5bb66a9e67d86de3041eb90c7106551bd5d Mon Sep 17 00:00:00 2001 From: "Glenn Y. Rolland" Date: Mon, 23 Sep 2013 14:12:10 +0200 Subject: [PATCH] Updated README.md. --- README.md | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/README.md b/README.md index e69de29..e9fc91c 100644 --- a/README.md +++ b/README.md @@ -0,0 +1,48 @@ +TimeTrack-Log for Git +===================== + +Use git logs to give an estimation of spent time on your projects. + + +Installation +------------ + +* Clone the project somewhere +* Copy the ''bin/git-timetrack-log'' file in ''/usr/local/bin'' + +Usage +----- + +To get the total time spent on your git project + +``` +$ git timetrack-log + +[...] + +(1.36) 2012-12-31T11:15:31+01:00 - 2012-12-31T12:36:55+01:00 + * Glenn Y. Rolland + Fix filtering. + * Glenn Y. Rolland + Time range extractor for git. + +TOTAL: 3.36 hours +``` + +To get the time spent on your project since a given date + +``` +$ git timetrack-log -d 2013-03-01 +set date filter to 2013-03-01 +(1.0) 2013-09-23T13:02:39+02:00 - 2013-09-23T14:02:39+02:00 + * Glenn Y. Rolland + Add support for import / export / merge of ranges. + +TOTAL: 1.00 hours +``` + +For other possibilities +``` +$ git timetrack-log -h +``` +