This repository has been archived by the owner on Mar 18, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
walkthrough.txt
90 lines (87 loc) · 2.28 KB
/
walkthrough.txt
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
82
83
84
85
86
87
88
89
90
### Example session
$ tt
Starting session.
What do you want to do?
> start
Right, but what's the name of your task?
> start "fix bug A"
You need to switch to a project first.
> switch pc
Switched to project "pc".
> start "fix bug A"
Started clock for "fix bug A".
> stop
Stopped clock for "fix bug A", at 39m.
> start "add feature X"
Started clock for "add feature X".
> switch amtees
(Pausing clock for "add feature X" [pc], at 22m.)
Switched to project "amtees".
> start "add feature Y"
Started clock for "add feature Y".
> start "add feature Z"
(Pausing clock for "add feature Y", at 1h:13m.)
Started clock for "add feature Z".
> stop
Stopped clock for "add feature Z", at 3h:53m.
(Resuming "add feature Y".)
> list # also ls
Last 5 tasks:
#4. add feature Z (stopped)
#3. add feature Y <==
> list outside
Last 5 tasks:
#1. fix bug A [pc] (stopped)
#4. add feature Z [amtees] (stopped)
#2. add feature X [pc] (paused)
#3. add feature Y [amtees] <==
> list all
#1. fix bug A [pc] (stopped)
#4. add feature Z [amtees] (stopped)
#2. add feature X [pc] (paused)
#3. add feature Y [amtees] <==
> resume 2
(Pausing clock for "add feature Y", at 1h:19m.)
(Switching to project "pc".)
Resumed "add feature X".
> list all # also just "all"
#1. fix bug A [pc] (stopped)
#4. add feature Z [amtees] (stopped)
#3. add feature Y [amtees] (paused)
#2. add feature X [pc] <==
> list stopped # also just "stopped"
Stopped tasks:
#1. fix bug A [pc] (39m)
#4. add feature Z [amtees] (3h:53m)
#3. add feature Y [amtees] (paused)
> stop 2
Stopped clock for "add feature X", at 2h:29m.
# Won't resume task in amtees until you switch to it
> switch amtees
Switching to project "amtees".
(Resuming "add feature Y".)
> stop
Stopped clock for "add feature Y", at 1d, 3h:01m.
> completed today # also just "today"
Today's completed tasks:
#2. add feature X [pc] (2h:29m)
#3. add feature Y [amtees] (1d, 3h:01m)
> completed this week # also just "this week"
...
> completed this month # also just "this month"
...
> search
Kind of hard to search without something to search for.
> search "add feature"
Matching tasks:
#2. add feature Z [3h:53m]
#3. add feature X [2h:29m]
#4. add feature Y [1d, 3h:01m]
> search "something else"
Sorry, no such tasks found.
$ tt
Starting session.
You're in the "amtees" project.
What do you want to do?
>
# vi: ft=none