Hacker News new | ask | show | jobs
by andredieb 5466 days ago
I'm not sure but I think he meant creating an alias, such as git task. For instance, your commands could be:

git task list

git task new "Fix homepage styling"

That can be achieved if you put something like this on .gitconfig:

[alias]

task = !tigger

1 comments

Oh awesome I didn't know about that I'll definitely look into it. Do you think people would be more likely to use it because they can type 'git' instead of 'tigger' (or whatever name it ends up being)?
It would definitely fit into git's naming convention for commands better. Whether or not that makes it stickier with users is probably an question only focus testing can answer :)