1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 01:22:09 +02:00

timew: fix existing and add new commands (#14963)

This commit is contained in:
Bill Seremetis 2024-12-31 06:25:53 +02:00 committed by GitHub
parent 3f7758038e
commit 88250e7ec8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -3,22 +3,30 @@
> A time tracking tool used to measure the duration of activities.
> More information: <https://timewarrior.net/docs>.
- Start a new stopwatch, giving a tag name to the activity being tracked:
- Start tracking an activity:
`timew start`
- Tag the current activity:
`timew tag {{activity_tag}}`
- Start tracking and tag a new activity:
`timew start {{activity_tag}}`
- View running stopwatches:
`timew`
- Stop the stopwatch with a given tag name:
`timew stop {{activity_tag}}`
- Stop all running stopwatches:
- Stop the current activity:
`timew stop`
- View tracked items:
- Track an activity in the past:
`timew track {{start_time} - {{end_time}} {{activity_tag}}`
- View tracked items of the day:
`timew summary`
- View report for the last day, week, current month, etc.:
`timew summary :{{today|yesterday|week|lastweek|month|lastmonth|year|lastyear}}`