-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Document Explicitly how to modify start and end times of tasks in timewarrior #61
Comments
Raw documentation data: 0.You can backdate the start time when tracking an interval. This happens a lot, because it is very common to forget to start tracking time. Here are some different ways to do that:
<clipboard-copy aria-label="Copy" class="ClipboardButton btn js-clipboard-copy m-2 p-0 tooltipped-no-delay" data-copy-feedback="Copied!" data-tooltip-direction="w" value="$ timew There is no active time tracking. $ timew start 3pm 'Read chapter 12' $ timew cancel $ timew start 90mins ago 'Read chapter 12'
<clipboard-copy aria-label="Copy" class="ClipboardButton btn js-clipboard-copy m-2 p-0 tooltipped-no-delay" data-copy-feedback="Copied!" data-tooltip-direction="w" value="$ timew Tracking Started 2016-06-15T16:14:27 Current 17:44:32 Total 1:30:05 $ timew stop 10mins ago
<clipboard-copy aria-label="Copy" class="ClipboardButton btn js-clipboard-copy m-2 p-0 tooltipped-no-delay" data-copy-feedback="Copied!" data-tooltip-direction="w" value="$ timew Tracking bar Started 2016-07-03T11:00:00 Current 21:17:44 Total 10:17:44 $ timew start 3hours ago foo |
Background info: the timewarrior data is not stored per task, but stored per time-tracking interval. The Id's go from 1 for the most recent time tracking interval, 2 for the interval you tracked before that etc. (so it could be that ids 1 and 2 both belong to some task with task id 342). To modify a time tracking interval, you first you need to find the id of the interval. To do this you can type:
This yields a list of intervals you have tracked last year, Then identify an interval that is incorrect. (Preferably do it immediatly when you identify an error, but you can also inspect the Date/Time (2nd) column of the output of the I have not yet found a way to inspect a single specific interval based on its id. Neither have I found a way to go show intervals that were created more than 1 year ago. (e.g. like a "task all" command).
|
If one knows/is easily able to correct that start time, the start and stop times are more representative of reality work times.
So first comment how to change the start and stop times of a task ( with multiple starts and stops).
Then determine where to properly document this data for public.
The text was updated successfully, but these errors were encountered: