-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
81 lines (53 loc) · 1.94 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# timetrackr
A simple CLI time tracking utility.
## Example
(with a Bash alias of 'tt')
start a task:
$ tt start something
...view durations:
$ tt
something * 0h 0m 4s
...have two running tasks:
$ tt start another-thing
$ tt log
2011-05-18 something * 22:11 0h 0m 30s
another-thing * 22:11 0h 0m 15s
...start with a note:
$ tt start one-more with a note
$ tt log
2011-05-18 something * 22:11 0h 0m 45s
another-thing * 22:11 0h 0m 30s
one-more * 22:13 0h 0m 15s with a note
...restrict some:
$ tt log something
2011-05-18 something * 22:11 0h 1m 00s
...exclude some:
$ tt log something -n another-thing
2011-05-18 something * 22:11 0h 1m 15s
one-more * 22:13 0h 0m 45s with a note
...stop one (or more):
$ tt stop something
$ tt
something 0h 1m 20s
another-thing * 0h 1m 30s
one-more * 0h 1m 15s
...and delete one:
$ tt clear something
another-thing * 0h 1m 45s
one-more * 0h 1m 30s
## Contributing to timetrackr
* Check out the latest master to make sure the feature hasn't been implemented
or the bug hasn't been fixed yet
* Check out the issue tracker to make sure someone already hasn't requested it
and/or contributed it
* Fork the project
* Start a feature/bugfix branch
* Commit and push until you are happy with your contribution
* Make sure to add tests for it. This is important so I don't break it in a
future version unintentionally.
* Please try not to mess with the Rakefile, version, or history. If you want to
have your own version, or is otherwise necessary, that is fine, but please
isolate to its own commit so I can cherry-pick around it.
## Copyright
Copyright (c) 2011 Felix Hanley. See LICENSE.txt for
further details.