You can integrate t with Mercurial through a shell alias:
[alias] task = !python /path/to/t.py --task-dir `$HG root` --list tasks
This will let you do stuff like:
$ hg task Fix the data-eating bug. $ hg task e - Fix the data-eating bug. $ vim myproject.py ... fix the bug ... $ hg task -f e $ hg commit 'Fix the big data-eating bug.'
You can integrate t with Mercurial through a shell alias:
I'm sure you can do something similar with git.This will let you do stuff like: