Added documentation for nt command

This commit is contained in:
Patrick Lipka 2021-12-17 15:03:47 +01:00
parent c760f573a6
commit 1e5075f3aa
1 changed files with 14 additions and 1 deletions

View File

@ -67,7 +67,7 @@ Time Tracker Development
~~~ ~~~
#### `np <Project Name>` #### `np <Project Name>`
Creates a new empty project with the given name and sets it active. The name must not be different from the existing projects.\ Creates a new empty project with the given name and sets it active. The name must be different from the existing projects.\
Example: Example:
~~~ ~~~
tt> np Test Project tt> np Test Project
@ -75,9 +75,22 @@ Switched to project Test Project
~~~ ~~~
#### `nt [<Project Name>/]<Task Name>` #### `nt [<Project Name>/]<Task Name>`
Creates a new task with the given name inside the currently active project and sets it active.\
If the optional parameter `[<Project Name>]` is present, the task si beeing created in the specified Project instead. This also changes the active project\
The task name must be different from existing tasks.\
Example:
~~~
tt> nt Test Task
Switched to task Test Project/Test Task
~~~
~~~
tt> nt HPCE/test
Switched to task HPCE/test
~~~
#### `rm [<Project Name>/]<Task Name>` #### `rm [<Project Name>/]<Task Name>`
#### `re [<Project Name>/]<Task Name>` #### `re [<Project Name>/]<Task Name>`
#### `sp <Project Name>` #### `sp <Project Name>`