-
Notifications
You must be signed in to change notification settings - Fork 0
Installation
brew tap imohsenb/tap
brew install git-taskWorks on any platform; requires a Rust toolchain.
git clone https://github.com/<you>/git-task && cd git-task && ./install.sh
# or, without the installer script:
cargo install --locked --path .Either path installs two binaries built from the same codebase:
-
git-task, sogit task <command>works as a git subcommand. -
gtask, a standalone alias with the identical command set (gtask new "title").
Pick whichever matches how you like to invoke it; nothing else differs between them.
git task --help with no subcommand is intercepted by git itself, which tries to run
man git-task. Without a man page installed, that just prints an error instead of help text.
git task -h, git task help, and git task <command> --help all work regardless of this. Run
the following once to fix the bare form too:
git task man --installgit task completions bash > /path/to/completions/git-task.bash
# also available: zsh, fish, powershell, elvishgit task --version
git task whoamiwhoami is a good first command to run: it reads your git identity (this repo's .git/config,
falling back to the global ~/.gitconfig) and reports what name/email would be recorded as the
author of any task you create. git-task has no --author override; identity always comes from git
config.
Next: Getting Started.
git-task
Start here
Using tasks
Building on git-task
Contributing