This commit is contained in:
JMARyA 2024-06-07 13:32:47 +02:00
parent 312aed18c8
commit 054249aa79
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263

View file

@ -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
```