update
This commit is contained in:
parent
312aed18c8
commit
054249aa79
1 changed files with 24 additions and 1 deletions
25
README.md
25
README.md
|
@ -45,10 +45,15 @@ vk rm 42
|
|||
|
||||
# Mark as done
|
||||
vk done 42
|
||||
vk done -u 42 # You can undo this
|
||||
|
||||
# Mark as favorite
|
||||
vk fav 42
|
||||
vk fav -u 42 # Undo
|
||||
|
||||
# Assign a user to a task
|
||||
vk assign me 42
|
||||
vk assign -u me 42 # You can undo this
|
||||
vk assign -u me 42 # Undo
|
||||
```
|
||||
|
||||
**Working with projects:**
|
||||
|
@ -78,3 +83,21 @@ vk labels new mylabel
|
|||
# Remove a label
|
||||
vk labels rm mylabel
|
||||
```
|
||||
|
||||
**Working with comments:**
|
||||
```shell
|
||||
# Show comments of task
|
||||
vk comments 42
|
||||
|
||||
# Comment on a task
|
||||
vk comment 42 "my comment"
|
||||
```
|
||||
|
||||
**Relations:**
|
||||
```shell
|
||||
# Make Task #42 be a parent task to #7
|
||||
vk relation 7 parent 42
|
||||
|
||||
# Make #42 blocked by #7
|
||||
vk relation 42 blocked 7
|
||||
```
|
||||
|
|
Loading…
Add table
Reference in a new issue