Skip to content

Latest commit

 

History

History
40 lines (36 loc) · 819 Bytes

active-task.md

File metadata and controls

40 lines (36 loc) · 819 Bytes

Back to top

Active task in commit message

You may declare "active task" by the command and don't care about numbers in commit messages:

$ commithook tracker:task 256

Using example

Now you are able to make simple commit messages:

$ git add myfile.php
$ git commit -m 'I have done something good!'

Expected commit message:

Implemented #256: Do something good
 - I have done something good!

More information about short commit messages here.

Available options:

Set active task 123:

commithook tracker:task 123

Show value of active task:

commithook tracker:task

Read info about active task:

commithook tracker:task --info

Read info about task 321:

commithook tracker:task 321 --info

Back to top